Remove leading underscore from parameters.

llvm-svn: 198642
This commit is contained in:
Rui Ueyama 2014-01-06 22:43:31 +00:00
parent b5531d7edb
commit 903b14432d
1 changed files with 2 additions and 4 deletions

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