mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-07 08:31:16 +00:00
Fix more linkage errors (#2011)
This commit is contained in:
parent
b268f8815d
commit
5555651ce0
@ -378,7 +378,7 @@ struct ostream_params {
|
|||||||
static constexpr detail::buffer_size buffer_size;
|
static constexpr detail::buffer_size buffer_size;
|
||||||
|
|
||||||
// A fast output stream which is not thread-safe.
|
// 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:
|
private:
|
||||||
file file_;
|
file file_;
|
||||||
|
|
||||||
@ -388,7 +388,7 @@ class FMT_API ostream final : private detail::buffer<char> {
|
|||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void grow(size_t) override final;
|
FMT_API void grow(size_t) override final;
|
||||||
|
|
||||||
ostream(cstring_view path, const detail::ostream_params& params)
|
ostream(cstring_view path, const detail::ostream_params& params)
|
||||||
: file_(path, params.oflag) {
|
: file_(path, params.oflag) {
|
||||||
|
Loading…
Reference in New Issue
Block a user