to ensure that the compiler is able to find ostream_formatter, even
without `using namespace fmt` or `using fmt::ostream_formatter` or
`using ostream_formatter = fmt::ostream_formatter` or equivalent
type aliases.
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
}
#if FMT_VERSION >= 90000
-template <> struct fmt::formatter<neorados::Entry> : ostream_formatter {};
+template <> struct fmt::formatter<neorados::Entry> : fmt::ostream_formatter {};
#endif
#endif // RADOS_DECODABLE_HPP
};
#if FMT_VERSION >= 90000
-template <> struct fmt::formatter<boost::program_options::options_description> : ostream_formatter {};
+template <> struct fmt::formatter<boost::program_options::options_description> : fmt::ostream_formatter {};
#endif // FMT_VERSION
int main(int argc, char* argv[])