Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/boost/property_tree/ptree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,10 +492,10 @@ namespace boost { namespace property_tree

private:
// Hold the data of this node
data_type m_data;
data_type m_data {};
// Hold the children - this is a void* because we can't complete the
// container type within the class.
void* m_children;
void* m_children {};

// Getter tree-walk. Not const-safe! Gets the node the path refers to,
// or null. Destroys p's value.
Expand Down