Skip to content
Snippets Groups Projects
Commit 8be01ffc authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Fix a warning

parent 2e1bafe8
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,8 @@ initTimeStepper(Config::scheme scheme, FunctionType const &dirichletFunction,
EulerPair<VectorType, MatrixType, FunctionType, dims>>(
stiffnessMatrix, massMatrix, u_initial, ud_initial, ignoreNodes,
dirichletFunction);
default:
assert(false);
}
}
......@@ -124,6 +126,8 @@ initStateUpdater(Config::state_model model,
return Dune::make_shared<
RuinaStateUpdater<SingletonVectorType, VectorType>>(
alpha_initial, frictionalNodes, L);
default:
assert(false);
}
}
......
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