Index: src/IceBrowserCompileServer.h |
diff --git a/src/IceBrowserCompileServer.h b/src/IceBrowserCompileServer.h |
index a34a03d150755499cb08e38796cc973bb91dfda1..1f663c343fd3372a0ca79d22b7ab76d3d400e97b 100644 |
--- a/src/IceBrowserCompileServer.h |
+++ b/src/IceBrowserCompileServer.h |
@@ -75,9 +75,7 @@ public: |
ELFStream.reset(nullptr); |
} |
- StringStream &getErrorStream() { |
- return *ErrorStream; |
- } |
+ StringStream &getErrorStream() { return *ErrorStream; } |
private: |
class StringStream { |
@@ -85,6 +83,7 @@ private: |
StringStream() : StrBuf(Buffer) {} |
const IceString &getContents() { return StrBuf.str(); } |
Ostream &getStream() { return StrBuf; } |
+ |
private: |
std::string Buffer; |
llvm::raw_string_ostream StrBuf; |