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
Since 9379286, building
#include <boost/safe_numerics/safe_integer.hpp> #include <fmt/format.h> #include <fmt/ostream.h> template<typename Stored, Stored Min, Stored Max, typename P, typename E> struct fmt::formatter< boost::safe_numerics::safe_base< Stored, Min, Max, P, E > > : fmt::ostream_formatter { }; void la() { fmt::print("{}", boost::safe_numerics::safe<int>{ 4 }); }
with gcc 8.2-10.4 with -std=gnu++17 -Os -Wall fails. https://godbolt.org/z/Goc3er7vc
-std=gnu++17 -Os -Wall
It's clearly a gcc bug, so it would be fair game to ignore it. But it affects Ubuntu 20.04.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since 9379286, building
with gcc 8.2-10.4 with
-std=gnu++17 -Os -Wall
fails. https://godbolt.org/z/Goc3er7vcIt's clearly a gcc bug, so it would be fair game to ignore it. But it affects Ubuntu 20.04.
The text was updated successfully, but these errors were encountered: