From f1a889a0b935fb88b520f0e430422e3d7552cd21 Mon Sep 17 00:00:00 2001 From: Jesse Beder Date: Sat, 24 Jan 2015 15:32:04 -0600 Subject: [PATCH] Fix initialize ordering warning --- src/node_data.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_data.cpp b/src/node_data.cpp index b8cf43c..379c1ef 100644 --- a/src/node_data.cpp +++ b/src/node_data.cpp @@ -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)