Commit f1a889a0 authored by Jesse Beder's avatar Jesse Beder
Browse files

Fix initialize ordering warning

parent fcbec237
......@@ -18,8 +18,8 @@ std::string node_data::empty_scalar;
node_data::node_data()
: m_isDefined(false),
m_type(NodeType::Null),
m_seqSize(0),
m_style(EmitterStyle::Default) {}
m_style(EmitterStyle::Default),
m_seqSize(0) {}
void node_data::mark_defined() {
if (m_type == NodeType::Undefined)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment