Skip to content
Snippets Groups Projects
Commit 62b7c885 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Mark RefinementQuadratureRule as final to match destructor

Clang 10-git warns with this change: class with destructor
marked 'final' cannot be inherited from
[-Wfinal-dtor-non-final-class]
parent 388eb86c
No related branches found
No related tags found
1 merge request!1830Fix/clang 10 warnings
...@@ -37,7 +37,7 @@ namespace Dumux { ...@@ -37,7 +37,7 @@ namespace Dumux {
* \brief A "quadrature" based on virtual refinement * \brief A "quadrature" based on virtual refinement
*/ */
template<typename ct, int mydim> template<typename ct, int mydim>
class RefinementQuadratureRule : public Dune::QuadratureRule<ct, mydim> class RefinementQuadratureRule final : public Dune::QuadratureRule<ct, mydim>
{ {
public: public:
//! The space dimension //! The space dimension
......
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