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
With trunk GCC and -std=c++2c :
-std=c++2c
#include <fmt/compile.h> using namespace fmt::literals; int main() { fmt::print(""_cf); }
does not compile with trunk fmt but does with 10.2.1:
https://gcc.godbolt.org/z/4WsvGP6bs
fmt/include/fmt/base.h
Lines 143 to 144 in aa52eb7
The text was updated successfully, but these errors were encountered:
Good catch, thanks! Looks like I accidentally inverted this check when cleaning it up.
Sorry, something went wrong.
Fixed in #3937 (thanks @Arghnews).
No branches or pull requests
With trunk GCC and
-std=c++2c
:does not compile with trunk fmt but does with 10.2.1:
https://gcc.godbolt.org/z/4WsvGP6bs
fmt/include/fmt/base.h
Lines 143 to 144 in aa52eb7
The text was updated successfully, but these errors were encountered: