Home | Info | Community | Development | myReactOS | Contact Us
[inline, static]
Definition at line 407 of file _fstream.h.
Referenced by basic_filebuf< _CharT, _Traits >::underflow().
{ if (!__this->_M_in_input_mode) { if (!__this->_M_switch_to_input_mode()) return traits_type::eof(); } else if (__this->_M_in_putback_mode) { __this->_M_exit_putback_mode(); if (__this->gptr() != __this->egptr()) { int_type __c = traits_type::to_int_type(*__this->gptr()); return __c; } } return __this->_M_underflow_aux(); }