diff --git a/flow/flow_ebos_foam.cpp b/flow/flow_ebos_foam.cpp index 81510af73..84aa0c459 100644 --- a/flow/flow_ebos_foam.cpp +++ b/flow/flow_ebos_foam.cpp @@ -26,12 +26,12 @@ namespace Opm { namespace Properties { namespace TTag { -struct EclFlowFoamProblem { +struct FlowFoamProblem { using InheritsFrom = std::tuple; }; } template -struct EnableFoam { +struct EnableFoam { static constexpr bool value = true; }; }} @@ -45,14 +45,14 @@ int flowEbosFoamMain(int argc, char** argv, bool outputCout, bool outputFiles) // with incorrect locale settings. resetLocale(); - FlowMain + FlowMain mainfunc {argc, argv, outputCout, outputFiles}; return mainfunc.execute(); } int flowEbosFoamMainStandalone(int argc, char** argv) { - using TypeTag = Properties::TTag::EclFlowFoamProblem; + using TypeTag = Properties::TTag::FlowFoamProblem; auto mainObject = std::make_unique(argc, argv); auto ret = mainObject->runStatic(); // Destruct mainObject as the destructor calls MPI_Finalize!