From 65618384c926d5c047460dac2c83db4a2de17915 Mon Sep 17 00:00:00 2001 From: Lewis Gross <43077972+lewisgross1296@users.noreply.github.com> Date: Fri, 12 May 2023 19:44:27 -0500 Subject: [PATCH] reordered list initialization of constructor in plot.cpp to respect header declaration order (#2519) --- src/plot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot.cpp b/src/plot.cpp index b4c8cad16..3bcae05ac 100644 --- a/src/plot.cpp +++ b/src/plot.cpp @@ -705,7 +705,7 @@ PlottableInterface::PlottableInterface(pugi::xml_node plot_node) } Plot::Plot(pugi::xml_node plot_node, PlotType type) - : PlottableInterface(plot_node), index_meshlines_mesh_ {-1}, type_(type) + : PlottableInterface(plot_node), type_(type), index_meshlines_mesh_ {-1} { set_output_path(plot_node); set_basis(plot_node);