diff --git a/include/cppcore/misc/vector_streambuf.inl b/include/cppcore/misc/vector_streambuf.inl index ee0811d..b5900f0 100644 --- a/include/cppcore/misc/vector_streambuf.inl +++ b/include/cppcore/misc/vector_streambuf.inl @@ -90,7 +90,7 @@ namespace cppcore auto p = this->pptr(); assert(this->pbase() <= p && p < this->epptr()); - *p = convert_cast(ch); + *p = static_cast(ch); this->pbump(1); } return ch;