From 20089c23cae7975b9c53c1cc3ccb273bd7364b3e Mon Sep 17 00:00:00 2001 From: Alexey Gorishny <0x414c@gmail.com> Date: Wed, 22 Feb 2017 22:55:15 +0300 Subject: [PATCH] Added missing FMT_OVERRIDE specifier to FormatBuf::overflow (#473) --- fmt/ostream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/ostream.h b/fmt/ostream.h index 2d2df2c2..0234a43e 100644 --- a/fmt/ostream.h +++ b/fmt/ostream.h @@ -35,7 +35,7 @@ class FormatBuf : public std::basic_streambuf { this->setp(start_, start_ + buffer_.capacity()); } - int_type overflow(int_type ch = traits_type::eof()) { + int_type overflow(int_type ch = traits_type::eof()) FMT_OVERRIDE { if (!traits_type::eq_int_type(ch, traits_type::eof())) { size_t buf_size = size(); buffer_.resize(buf_size);