Rename parameters to fix shadow warnings.
authorRui Ueyama <ruiu@google.com>
Mon, 6 Jan 2014 22:31:01 +0000 (22:31 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 6 Jan 2014 22:31:01 +0000 (22:31 +0000)
llvm-svn: 198641

lld/lib/ReaderWriter/PECOFF/EdataPass.h

index 8fd83aa..d7164fb 100644 (file)
@@ -36,9 +36,10 @@ namespace pecoff {
 namespace edata {
 
 struct TableEntry {
-  TableEntry(StringRef exportName, int ordinal, const DefinedAtom *atom,
-             bool noname)
-      : exportName(exportName), ordinal(ordinal), atom(atom), noname(noname) {}
+  TableEntry(StringRef _exportName, int _ordinal, const DefinedAtom *_atom,
+             bool _noname)
+      : exportName(_exportName), ordinal(_ordinal), atom(_atom),
+        noname(_noname) {}
   StringRef exportName;
   int ordinal;
   const DefinedAtom *atom;