Remove redundant explicit default initialization of non-trivially constructed member.

llvm-svn: 207357
This commit is contained in:
David Blaikie 2014-04-27 14:47:23 +00:00
parent 4beba42e1e
commit 6afb267fb5
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ private:
struct DataArray {
MCSymbol *StrSym;
std::vector<HashDataContents *> Values;
DataArray() : StrSym(nullptr), Values() {}
DataArray() : StrSym(nullptr) {}
};
friend struct HashData;
struct HashData {