Fix missing member initializers

This fixes the -Werror build with some combination of
warning flags.

llvm-svn: 274707
This commit is contained in:
Matt Arsenault 2016-07-06 23:30:54 +00:00
parent 20128d94e5
commit 3e96a709f1
1 changed files with 1 additions and 1 deletions

View File

@ -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) {}