MCPcopy Create free account
hub / github.com/THUNLP-MT/MEAN / overflow

Method overflow

evaluation/TMscore.cpp:1957–1966  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected