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

Unified Diff: src/IceELFStreamer.h

Issue 1221643012: Subzero: Add -Wshadow to the build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Change the previous underscore naming style Created 5 years, 6 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
Index: src/IceELFStreamer.h
diff --git a/src/IceELFStreamer.h b/src/IceELFStreamer.h
index 50e4dd72575bc31d3e6faca89a1b3d876b840fea..7e0a52abffd21b8ca212d6fcdd2c8d94656306c0 100644
--- a/src/IceELFStreamer.h
+++ b/src/IceELFStreamer.h
@@ -27,7 +27,7 @@ class ELFStreamer {
ELFStreamer &operator=(const ELFStreamer &) = delete;
public:
- explicit ELFStreamer(Fdstream &Out) : Out(Out) {}
+ explicit ELFStreamer(Fdstream &MyOut) : Out(MyOut) {}
void write8(uint8_t Value) { Out << char(Value); }

Powered by Google App Engine
This is Rietveld 408576698