From ec077a0bf23dbd74f99b7e65e76836df8da0c1d9 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 11 Sep 2020 09:25:00 -0400 Subject: [PATCH] ncplot: C++ headers need match declaration order #627 --- src/libcpp/Plot.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcpp/Plot.cc b/src/libcpp/Plot.cc index 4b2680897..96a214498 100644 --- a/src/libcpp/Plot.cc +++ b/src/libcpp/Plot.cc @@ -9,8 +9,8 @@ ncplot_options PlotD::default_options = { 0, // legendstyle ncblitter_e::NCBLIT_1x1, // ncblitter_e 0, // rangex - 0, // flags "", // title + 0, // flags }; ncplot_options PlotU::default_options = { @@ -19,8 +19,8 @@ ncplot_options PlotU::default_options = { 0, // legendstyle ncblitter_e::NCBLIT_1x1, // ncblitter_e 0, // rangex - 0, // flags "", // title + 0, // flags }; Plane* PlotD::get_plane () const noexcept