Skip to content
Snippets Groups Projects
Commit 3a6a7dc8 authored by oliver.sander_at_tu-dresden.de's avatar oliver.sander_at_tu-dresden.de
Browse files

Add missing std:: prefix

parent 60b0010f
Branches
No related tags found
No related merge requests found
Pipeline #27676 failed
...@@ -254,7 +254,7 @@ int main (int argc, char *argv[]) try ...@@ -254,7 +254,7 @@ int main (int argc, char *argv[]) try
std::shared_ptr<NeumannFunction> neumannFunction; std::shared_ptr<NeumannFunction> neumannFunction;
if (parameterSet.hasKey("neumannValues")) if (parameterSet.hasKey("neumannValues"))
{ {
neumannFunction = make_shared<NeumannFunction>(parameterSet.get<FieldVector<double,dim> >("neumannValues"), neumannFunction = std::make_shared<NeumannFunction>(parameterSet.get<FieldVector<double,dim> >("neumannValues"),
homotopyParameter); homotopyParameter);
std::cout << "Neumann values: " << parameterSet.get<FieldVector<double,dim> >("neumannValues") << std::endl; std::cout << "Neumann values: " << parameterSet.get<FieldVector<double,dim> >("neumannValues") << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment