Skip to content
Snippets Groups Projects
Commit 8d53dab9 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

corrected some typos in the comments

parent 52705161
Branches
Tags
1 merge request!46add functionality to remove an added marker
......@@ -361,7 +361,8 @@ namespace AMDiS
linearSolver_ = solver;
}
/// Wrap the solver into a non-destroying shared_ptr, or move it into a new shared_ptr
/// Wrap the solver reference into a non-destroying shared_ptr, or move it
/// into a new shared_ptr if it is a temporary.
template <class S,
REQUIRES(std::is_base_of<LinearSolverType, remove_cvref_t<S>>::value)>
void setSolver(S&& solver)
......@@ -399,8 +400,8 @@ namespace AMDiS
it.first->second->setMaximumMarking(true);
}
/// Wrap the reference into a non-destroying shared_ptr or move it into a new shared_ptr and
/// store it in the problemand store in the problem
/// Wrap the reference into a non-destroying shared_ptr or move it into a
/// new shared_ptr if it is a temporary.
template <class M,
REQUIRES(std::is_base_of<Marker<Grid>, remove_cvref_t<M>>::value)>
void addMarker(M&& marker)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment