Remove leading underscore from parameters.
authorRui Ueyama <ruiu@google.com>
Mon, 6 Jan 2014 22:43:31 +0000 (22:43 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 6 Jan 2014 22:43:31 +0000 (22:43 +0000)
llvm-svn: 198642

lld/lib/ReaderWriter/PECOFF/EdataPass.h

index d7164fb..4239f88 100644 (file)
@@ -36,10 +36,8 @@ 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 exp, int ord, const DefinedAtom *a, bool n)
+      : exportName(exp), ordinal(ord), atom(a), noname(n) {}
   StringRef exportName;
   int ordinal;
   const DefinedAtom *atom;