| 1955 | */ |
| 1956 | template <typename C, typename T> |
| 1957 | typename basic_pstreambuf<C,T>::int_type |
| 1958 | basic_pstreambuf<C,T>::overflow(int_type c) |
| 1959 | { |
| 1960 | if (!empty_buffer()) |
| 1961 | return traits_type::eof(); |
| 1962 | else if (!traits_type::eq_int_type(c, traits_type::eof())) |
| 1963 | return this->sputc(c); |
| 1964 | else |
| 1965 | return traits_type::not_eof(c); |
| 1966 | } |
| 1967 | |
| 1968 | |
| 1969 | template <typename C, typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected