forked from OSchip/llvm-project
Remove redundant explicit default initialization of non-trivially constructed member.
llvm-svn: 207357
This commit is contained in:
parent
4beba42e1e
commit
6afb267fb5
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue