Rename parameters to fix shadow warnings.

llvm-svn: 198641
This commit is contained in:
Rui Ueyama 2014-01-06 22:31:01 +00:00
parent ef512b9929
commit b5531d7edb
1 changed files with 4 additions and 3 deletions

View 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;