Ensure all C++ class member raw pointers are default-initialized to nullptr.

This commit is contained in:
John Ralls
2018-08-10 12:21:28 -07:00
parent 1e87d069f6
commit 2f861bc2a4
7 changed files with 15 additions and 15 deletions

View File

@@ -42,8 +42,8 @@ public:
}
protected:
KvpFrameImpl t_root;
KvpValue *t_int_val;
KvpValue *t_str_val;
KvpValue *t_int_val = nullptr;
KvpValue *t_str_val = nullptr;
};
template <typename A, typename B> void