From e4aeefa1b5558b1567e5da5d92307f0837057b73 Mon Sep 17 00:00:00 2001 From: Graham Harper Date: Thu, 26 Jul 2018 22:49:17 +0000 Subject: [PATCH] Removed override from function definitions --- source/fe/fe_bernardi_raugel.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fe/fe_bernardi_raugel.cc b/source/fe/fe_bernardi_raugel.cc index f75e734ea2..bcc27fb2bd 100644 --- a/source/fe/fe_bernardi_raugel.cc +++ b/source/fe/fe_bernardi_raugel.cc @@ -70,7 +70,7 @@ FE_BernardiRaugel::FE_BernardiRaugel(const unsigned int p) template std::string -FE_BernardiRaugel::get_name() const override +FE_BernardiRaugel::get_name() const { std::ostringstream namebuf; namebuf << "FE_BR<" << dim << ">(" << 1 << ")"; @@ -81,7 +81,7 @@ FE_BernardiRaugel::get_name() const override template std::unique_ptr> -FE_BernardiRaugel::clone() const override +FE_BernardiRaugel::clone() const { return std_cxx14::make_unique>(*this); } @@ -92,7 +92,7 @@ template void FE_BernardiRaugel::convert_generalized_support_point_values_to_dof_values( const std::vector> &support_point_values, - std::vector & nodal_values) const override + std::vector & nodal_values) const { Assert(support_point_values.size() == this->generalized_support_points.size(), ExcDimensionMismatch(support_point_values.size(), -- 2.39.5