Remove v-table anchor for detail::ostream_buffer
This commit is contained in:
parent
ef4074802a
commit
e75f9b8e38
@ -382,7 +382,9 @@ struct ostream_params {
|
|||||||
class ostream_buffer final : public detail::buffer<char> {
|
class ostream_buffer final : public detail::buffer<char> {
|
||||||
file file_;
|
file file_;
|
||||||
|
|
||||||
FMT_API void grow(size_t) override;
|
void grow(size_t) override {
|
||||||
|
if (this->size() == this->capacity()) flush();
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ostream_buffer(cstring_view path, const detail::ostream_params& params)
|
ostream_buffer(cstring_view path, const detail::ostream_params& params)
|
||||||
|
|||||||
@ -366,10 +366,6 @@ long getpagesize() {
|
|||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_API void detail::ostream_buffer::grow(size_t) {
|
|
||||||
if (this->size() == this->capacity()) flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
ostream::~ostream() = default;
|
ostream::~ostream() = default;
|
||||||
#endif // FMT_USE_FCNTL
|
#endif // FMT_USE_FCNTL
|
||||||
FMT_END_NAMESPACE
|
FMT_END_NAMESPACE
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user