You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello !
I'm having compile issues on fmt 9.x and 10.x with the ostream extension.
Same on msvc (latest) and gcc 13.2 : https://godbolt.org/z/8oejx8Yfn
Thanks for the help !
#include<fmt/ostream.h>structA{};
std::ostream& operator<<(std::ostream& os, const A& a)
{
os << "Hello !";
return os;
}
intmain()
{
fmt::print("{}", A{});
}
7.x => ✅
8.x => ✅
9.x => ❌
10.x => ❌
The text was updated successfully, but these errors were encountered:
Hello !
I'm having compile issues on fmt 9.x and 10.x with the
ostream
extension.Same on
msvc
(latest) andgcc 13.2
: https://godbolt.org/z/8oejx8YfnThanks for the help !
7.x => ✅
8.x => ✅
9.x => ❌
10.x => ❌
The text was updated successfully, but these errors were encountered: