]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Removed override from function definitions
authorGraham Harper <grahambenharper@gmail.com>
Thu, 26 Jul 2018 22:49:17 +0000 (22:49 +0000)
committerGraham Harper <grahambenharper@gmail.com>
Thu, 26 Jul 2018 22:49:17 +0000 (22:49 +0000)
source/fe/fe_bernardi_raugel.cc

index f75e734ea2b921aff846aba8f68af2f380039ca3..bcc27fb2bdce2587982459b86e1f431cb8b09ca0 100644 (file)
@@ -70,7 +70,7 @@ FE_BernardiRaugel<dim>::FE_BernardiRaugel(const unsigned int p)
 
 template <int dim>
 std::string
-FE_BernardiRaugel<dim>::get_name() const override
+FE_BernardiRaugel<dim>::get_name() const
 {
   std::ostringstream namebuf;
   namebuf << "FE_BR<" << dim << ">(" << 1 << ")";
@@ -81,7 +81,7 @@ FE_BernardiRaugel<dim>::get_name() const override
 
 template <int dim>
 std::unique_ptr<FiniteElement<dim, dim>>
-FE_BernardiRaugel<dim>::clone() const override
+FE_BernardiRaugel<dim>::clone() const
 {
   return std_cxx14::make_unique<FE_BernardiRaugel<dim>>(*this);
 }
@@ -92,7 +92,7 @@ template <int dim>
 void
 FE_BernardiRaugel<dim>::convert_generalized_support_point_values_to_dof_values(
   const std::vector<Vector<double>> &support_point_values,
-  std::vector<double> &              nodal_values) const override
+  std::vector<double> &              nodal_values) const
 {
   Assert(support_point_values.size() == this->generalized_support_points.size(),
          ExcDimensionMismatch(support_point_values.size(),

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.