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

Unified Diff: src/IceCompileServer.h

Issue 1221643012: Subzero: Add -Wshadow to the build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 5 years, 5 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/IceCompileServer.h
diff --git a/src/IceCompileServer.h b/src/IceCompileServer.h
index e027cbbe551a8dcd552dce2cf673070ceb2943b1..050359e50f02e80c19d83050ceca9e0a135ba3a7 100644
--- a/src/IceCompileServer.h
+++ b/src/IceCompileServer.h
@@ -44,7 +44,7 @@ class CompileServer {
CompileServer &operator=(const CompileServer &) = delete;
public:
- explicit CompileServer(Compiler &Comp) : Comp(Comp) {}
+ explicit CompileServer(Compiler &MyComp) : Comp(MyComp) {}
virtual ~CompileServer() = default;
@@ -67,8 +67,8 @@ class CLCompileServer : public CompileServer {
CLCompileServer &operator=(const CLCompileServer &) = delete;
public:
- CLCompileServer(Compiler &Comp, int argc, char **argv)
- : CompileServer(Comp), argc(argc), argv(argv) {}
+ CLCompileServer(Compiler &Comp, int MyArgc, char **MyArgv)
+ : CompileServer(Comp), argc(MyArgc), argv(MyArgv) {}
~CLCompileServer() final = default;
« no previous file with comments | « src/IceClFlagsExtra.h ('k') | src/IceCompileServer.cpp » ('j') | src/IceConverter.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698