Added missing FMT_OVERRIDE specifier to FormatBuf::overflow (#473)

diff --git a/fmt/ostream.h b/fmt/ostream.h
index 2d2df2c..0234a43 100644
--- a/fmt/ostream.h
+++ b/fmt/ostream.h
@@ -35,7 +35,7 @@
     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);