Searched defs:ScopedNewLine (Results 1 – 1 of 1) sorted by relevance
28 struct ScopedNewLine { struct29 explicit ScopedNewLine(std::ostream& os) : stream(os) {} in ScopedNewLine() function31 ScopedNewLine(ScopedNewLine&& other) : stream(other.stream), active(other.active) { in ScopedNewLine() function36 ScopedNewLine& operator=(ScopedNewLine&) = delete; argument38 ~ScopedNewLine() { in ~ScopedNewLine() argument57 std::ostream& stream;58 bool active = true;