reordered list initialization of constructor in plot.cpp to respect header declaration order (#2519)

This commit is contained in:
Lewis Gross 2023-05-12 19:44:27 -05:00 committed by GitHub
parent eeb8a1f451
commit 65618384c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);