MCPcopy Create free account
hub / github.com/boostorg/json / basic_debug_stream

Method basic_debug_stream

test/test_suite.hpp:129–136  ·  view source on GitHub ↗

Construct a stream. @param os The output stream to wrap. */

Source from the content-addressed store, hash-verified

127 @param os The output stream to wrap.
128 */
129 explicit
130 basic_debug_stream(std::ostream& os)
131 : std::basic_ostream<CharT, Traits>(&buf_)
132 , buf_(os)
133 {
134 if(os.flags() & std::ios::unitbuf)
135 std::unitbuf(*this);
136 }
137};
138
139} // detail

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected