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
Add support for the s format specifier to bool for consistency with std::format. E.g. the following should compile:
s
bool
std::format
#include <fmt/core.h> int main() { fmt::print("{:s}", true); }
and print true.
true
The text was updated successfully, but these errors were encountered:
Support for the s format specifier to bool (fmtlib#2094)
200a4a0
Add support for s format specifier to bool (fmtlib#2094)
4c59dca
Add support for s format specifier to bool (#2094) (#2109)
8bf28e6
No branches or pull requests
Add support for the
s
format specifier tobool
for consistency withstd::format
. E.g. the following should compile:and print
true
.The text was updated successfully, but these errors were encountered: