We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad6d78f commit 20089c2Copy full SHA for 20089c2
fmt/ostream.h
@@ -35,7 +35,7 @@ class FormatBuf : public std::basic_streambuf<Char> {
35
this->setp(start_, start_ + buffer_.capacity());
36
}
37
38
- int_type overflow(int_type ch = traits_type::eof()) {
+ int_type overflow(int_type ch = traits_type::eof()) FMT_OVERRIDE {
39
if (!traits_type::eq_int_type(ch, traits_type::eof())) {
40
size_t buf_size = size();
41
buffer_.resize(buf_size);
0 commit comments