aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zverovich <victor.zverovich@gmail.com>2020-11-14 06:06:10 -0800
committerVictor Zverovich <victor.zverovich@gmail.com>2020-11-24 08:17:31 -0800
commita57baa69a589115e4130e8520ff5348fdb2ae4a7 (patch)
tree52cec1a01282f7fd7aad7e4cd618c7c462d321da
parent85534a1397136d5808248289fec68b40e5be0d74 (diff)
downloadfmtlib-a57baa69a589115e4130e8520ff5348fdb2ae4a7.tar.gz
Fix more linkage errors (#2011)
-rw-r--r--include/fmt/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fmt/os.h b/include/fmt/os.h
index 2482bee5..d44ea0c9 100644
--- a/include/fmt/os.h
+++ b/include/fmt/os.h
@@ -378,7 +378,7 @@ struct ostream_params {
static constexpr detail::buffer_size buffer_size;
// A fast output stream which is not thread-safe.
-class FMT_API ostream final : private detail::buffer<char> {
+class ostream final : private detail::buffer<char> {
private:
file file_;