Skip to content

Commit

Permalink
Fix more linkage errors (#2011)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Nov 14, 2020
1 parent b268f88 commit 5555651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_;

Expand All @@ -388,7 +388,7 @@ class FMT_API ostream final : private detail::buffer<char> {
clear();
}

void grow(size_t) override final;
FMT_API void grow(size_t) override final;

ostream(cstring_view path, const detail::ostream_params& params)
: file_(path, params.oflag) {
Expand Down

0 comments on commit 5555651

Please sign in to comment.