| 1932 | */ |
| 1933 | template <typename C, typename T> |
| 1934 | inline bool |
| 1935 | basic_pstreambuf<C,T>::read_err(bool readerr) |
| 1936 | { |
| 1937 | buf_read_src src = readerr ? rsrc_err : rsrc_out; |
| 1938 | if (rpipe_[src]>=0) |
| 1939 | { |
| 1940 | switch_read_buffer(src); |
| 1941 | return true; |
| 1942 | } |
| 1943 | return false; |
| 1944 | } |
| 1945 | |
| 1946 | /** |
| 1947 | * Called when the internal character buffer is not present or is full, |
no outgoing calls
no test coverage detected