From 8bf75f97914c69c6e7b0e79160432250a7745fa3 Mon Sep 17 00:00:00 2001 From: Ihor Dutchak Date: Sun, 23 Oct 2022 00:36:47 +0300 Subject: [PATCH] Apply suggestions from code review --- include/fmt/os.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/os.h b/include/fmt/os.h index 01a31baf..58a16a57 100644 --- a/include/fmt/os.h +++ b/include/fmt/os.h @@ -385,7 +385,7 @@ class file_buffer final : public detail::buffer { FMT_API void grow(size_t) override; public: - FMT_API file_buffer(cstring_view path, const detail::ostream_params& params); + FMT_API file_buffer(cstring_view path, const ostream_params& params); FMT_API file_buffer(file_buffer&& other); FMT_API ~file_buffer(); @@ -408,7 +408,7 @@ FMT_END_DETAIL_NAMESPACE constexpr detail::buffer_size buffer_size{}; /** A fast output stream which is not thread-safe. */ -class FMT_API ostream final { +class FMT_API ostream { private: FMT_MSC_WARNING(suppress : 4251) detail::file_buffer buffer_;