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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207357 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2014-04-27 14:47:23 +00:00
parent 1a6bd31d24
commit 35d4ad33f6

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 {