forked from OSchip/llvm-project
Fix missing member initializers
This fixes the -Werror build with some combination of warning flags. llvm-svn: 274707
This commit is contained in:
parent
20128d94e5
commit
3e96a709f1
|
@ -325,7 +325,7 @@ public:
|
|||
Info *InfoObj;
|
||||
|
||||
public:
|
||||
iterator() : Data(nullptr), Len(0) {}
|
||||
iterator() : Key(), Data(nullptr), Len(0), InfoObj(nullptr) {}
|
||||
iterator(const internal_key_type K, const unsigned char *D, offset_type L,
|
||||
Info *InfoObj)
|
||||
: Key(K), Data(D), Len(L), InfoObj(InfoObj) {}
|
||||
|
|
Loading…
Reference in New Issue