diff --git a/include/fmt/ostream.h b/include/fmt/ostream.h index d69a4b8c..17b1e44b 100644 --- a/include/fmt/ostream.h +++ b/include/fmt/ostream.h @@ -35,7 +35,7 @@ class file_access { friend auto get_file(BufType& obj) -> FILE* { return obj.*FileMemberPtr; } }; -#if _MSVC_STL_UPDATE +#ifdef _MSVC_STL_UPDATE template class file_access; auto get_file(std::filebuf&) -> FILE*; @@ -109,7 +109,7 @@ inline void vprint(std::ostream& os, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); FILE* f = nullptr; -#if _MSVC_STL_UPDATE && FMT_USE_RTTI +#if defined(_MSVC_STL_UPDATE) && FMT_USE_RTTI if (auto* buf = dynamic_cast(os.rdbuf())) f = detail::get_file(*buf); #elif defined(_WIN32) && defined(__GLIBCXX__) && FMT_USE_RTTI