| 2029 | */ |
| 2030 | template <typename C, typename T> |
| 2031 | typename basic_pstreambuf<C,T>::int_type |
| 2032 | basic_pstreambuf<C,T>::underflow() |
| 2033 | { |
| 2034 | if (this->gptr() < this->egptr() || fill_buffer()) |
| 2035 | return traits_type::to_int_type(*this->gptr()); |
| 2036 | else |
| 2037 | return traits_type::eof(); |
| 2038 | } |
| 2039 | |
| 2040 | /** |
| 2041 | * Attempts to make @a c available as the next character to be read by |
nothing calls this directly
no outgoing calls
no test coverage detected