Skip to content
Snippets Groups Projects
Commit 787f46d3 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[io][staggered] use new constructor argument order of output module

parent bdbd77fd
No related branches found
No related tags found
1 merge request!936[io][staggered] use new constructor argument order of output module
......@@ -89,9 +89,9 @@ public:
const SolutionVector& sol,
const std::string& name,
const std::string& paramGroup = "",
bool verbose = true,
Dune::VTK::DataMode dm = Dune::VTK::conforming)
: ParentType(problem, fvGridGeometry, gridVariables, sol, name, paramGroup, verbose, dm)
Dune::VTK::DataMode dm = Dune::VTK::conforming,
bool verbose = true)
: ParentType(problem, fvGridGeometry, gridVariables, sol, name, paramGroup, dm, verbose)
, problem_(problem)
, gridGeom_(fvGridGeometry)
, gridVariables_(gridVariables)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment