Skip to content
Snippets Groups Projects
Commit b99d2717 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

AMGStep: use `override` keyword; use `= default` for default constructor

parent 6e7d7634
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ class AMGStep
public:
/** \brief Default constructor */
AMGStep () {}
AMGStep () = default;
/** \brief Constructor which initializes and sets up an algebraic hierarchy
\param smootherArgs Arguments for the smoother. See the dune-istl documentation for details
......@@ -69,10 +69,10 @@ public:
/** \brief Sets up an algebraic hierarchy
*/
virtual void preprocess();
void preprocess() override;
/** \brief Perform one iteration */
virtual void iterate();
void iterate() override;
/** \brief Arguments for the smoother. See the dune-istl documentation for details */
SmootherArgs smootherArgs_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment