1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

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 4b708bedcf
commit bcb7340715

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 {