Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2593)

Unified Diff: src/IceBrowserCompileServer.h

Issue 1111603003: Subzero: Fix asm (non-ELF) output files. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/IceCompileServer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | src/IceCompileServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698