Skip to content
Snippets Groups Projects
Commit 003b6ce4 authored by Max Kahnt's avatar Max Kahnt
Browse files

[Cleanup] superfluouse semicolons and indentation

parent 92501b01
No related branches found
No related tags found
1 merge request!17Cleanup/norms
...@@ -18,7 +18,7 @@ class Norm { ...@@ -18,7 +18,7 @@ class Norm {
using field_type = typename Dune::FieldTraits<VectorType>::field_type; using field_type = typename Dune::FieldTraits<VectorType>::field_type;
/** \brief Destructor, doing nothing */ /** \brief Destructor, doing nothing */
virtual ~Norm() {}; virtual ~Norm() {}
//! Compute the norm of the given vector //! Compute the norm of the given vector
virtual field_type operator()(const VectorType& f) const = 0; virtual field_type operator()(const VectorType& f) const = 0;
......
...@@ -18,7 +18,7 @@ class TwoNorm : public Norm<VectorType> ...@@ -18,7 +18,7 @@ class TwoNorm : public Norm<VectorType>
public: public:
/** \brief Destructor, doing nothing */ /** \brief Destructor, doing nothing */
virtual ~TwoNorm() {}; virtual ~TwoNorm() {}
//! Compute the norm of the given vector //! Compute the norm of the given vector
virtual double operator()(const VectorType& f) const virtual double operator()(const VectorType& f) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment