From e49f28ddb61b92492299c1e1b3b31846e9e7e00f Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Thu, 23 Aug 2018 09:01:42 +0200 Subject: [PATCH] [test][freeflow] Call template function with <> in loadSolution() * clang won't compile otherwise --- test/freeflow/navierstokes/test_channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/freeflow/navierstokes/test_channel.cc b/test/freeflow/navierstokes/test_channel.cc index 7a087d937c..4a60f7b56d 100644 --- a/test/freeflow/navierstokes/test_channel.cc +++ b/test/freeflow/navierstokes/test_channel.cc @@ -150,7 +150,7 @@ int main(int argc, char** argv) try auto fileNameFace = getParamFromGroup<std::string>("Face", "Restart.File"); loadSolution(x[FVGridGeometry::faceIdx()], fileNameFace, - ModelTraits::primaryVariableNameFace, *fvGridGeometry); + ModelTraits::primaryVariableNameFace<>, *fvGridGeometry); } else problem->applyInitialSolution(x); -- GitLab