mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Ensure all C++ class member raw pointers are default-initialized to nullptr.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user