Home
last modified time | relevance | path

Searched defs:counting_streambuf (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/histogram/detail/
Dcounting_streambuf.hpp20 struct counting_streambuf : std::basic_streambuf<CharT, Traits> { struct
21 using base_t = std::basic_streambuf<CharT, Traits>;
25 std::streamsize* p_count;
27 counting_streambuf(std::streamsize& c) : p_count(&c) {} in counting_streambuf() function
29 std::streamsize xsputn(const char_type* /* s */, std::streamsize n) override { in xsputn()
34 int_type overflow(int_type ch) override { in overflow()