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
My understanding is types which define ostream op<<() should be formattable provided you include <fmt/ostream.h>, from the docs and this SO answer:
https://stackoverflow.com/questions/58596669/printing-using-fmt-library
However here's the exact thing from the SO answer and it doesn't work: https://godbolt.org/z/qacYhqh79
Here's another similar example: https://godbolt.org/z/qxqs45cqo
The text was updated successfully, but these errors were encountered:
ostream support for a type was made opt-in. https://fmt.dev/dev/api.html#ostream-api. See #2357 for background.
ostream
Sorry, something went wrong.
No branches or pull requests
My understanding is types which define ostream op<<() should be formattable provided you include <fmt/ostream.h>, from the docs and this SO answer:
https://stackoverflow.com/questions/58596669/printing-using-fmt-library
However here's the exact thing from the SO answer and it doesn't work: https://godbolt.org/z/qacYhqh79
Here's another similar example: https://godbolt.org/z/qxqs45cqo
The text was updated successfully, but these errors were encountered: