mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-25 20:45:35 -04:00
reordered list initialization of constructor in plot.cpp to respect header declaration order (#2519)
This commit is contained in:
parent
eeb8a1f451
commit
65618384c9
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue