We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi at all, In order to compile the framework with GCC 9.2 I made following changes:
src/ArduinoJson/Object/MemberProxy.hpp
... template <typename TObject, typename TStringRef> class MemberProxy : public VariantOperators<MemberProxy<TObject, TStringRef> >, public Visitable { typedef MemberProxy<TObject, TStringRef> this_type; public: MemberProxy(const MemberProxy&) = default; // GCC 9 ...
src/ArduinoJson/Array/ElementProxy.hpp
... template <typename TArray> class ElementProxy : public VariantOperators<ElementProxy<TArray> >, public Visitable { typedef ElementProxy<TArray> this_type; public: ElementProxy(const ElementProxy&) = default; // GCC 9 ...
extras/tests/JsonDocument/BasicJsonDocument.cpp:
... class SpyingAllocator { public: SpyingAllocator(const SpyingAllocator&) = default; // GCC 9 ...
The text was updated successfully, but these errors were encountered:
d2a67f3
Hi @soeth16,
Thank you for reporting this. I fixed this warning in the main branch.
Best regards, Benoit
Sorry, something went wrong.
This fix was included in ArduinoJson 6.15.0.
Fixed "deprecated-copy" warning on GCC 9 (fixes bblanchon#1184)
2e1d452
No branches or pull requests
Hi at all,
In order to compile the framework with GCC 9.2 I made following changes:
src/ArduinoJson/Object/MemberProxy.hpp
src/ArduinoJson/Array/ElementProxy.hpp
extras/tests/JsonDocument/BasicJsonDocument.cpp:
The text was updated successfully, but these errors were encountered: