Searched defs:ScopedNewLine (Results 1 – 1 of 1) sorted by relevance
30 struct ScopedNewLine { struct31 explicit ScopedNewLine(std::ostream& os) : stream(os) {} in ScopedNewLine() function33 ScopedNewLine(ScopedNewLine&& other) noexcept : stream(other.stream), active(other.active) { in ScopedNewLine() function38 ScopedNewLine& operator=(ScopedNewLine&) = delete; argument40 ~ScopedNewLine() { in ~ScopedNewLine() argument59 std::ostream& stream;60 bool active = true;