From e31fb90869dfc21737e6b4e16ac83145fe175fb4 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 12 Feb 2010 03:59:59 +0000 Subject: [PATCH] Mark functions virtual as necessary. git-svn-id: https://svn.dealii.org/trunk@20564 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_values.h | 40 +++++++++++++------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe_values.h b/deal.II/deal.II/include/fe/fe_values.h index 6594d20922..0dd2b7a95d 100644 --- a/deal.II/deal.II/include/fe/fe_values.h +++ b/deal.II/deal.II/include/fe/fe_values.h @@ -2834,27 +2834,27 @@ class FEValuesBase : protected FEValuesData, get_interpolated_dof_values (const PETScWrappers::BlockVector &in, Vector &out) const = 0; - /** - * Call - * @p get_interpolated_dof_values - * of the iterator with the - * given arguments. - */ - virtual - void - get_interpolated_dof_values (const PETScWrappers::MPI::Vector &in, - Vector &out) const; + /** + * Call + * @p get_interpolated_dof_values + * of the iterator with the + * given arguments. + */ + virtual + void + get_interpolated_dof_values (const PETScWrappers::MPI::Vector &in, + Vector &out) const = 0; - /** - * Call - * @p get_interpolated_dof_values - * of the iterator with the - * given arguments. - */ - virtual - void - get_interpolated_dof_values (const PETScWrappers::MPI::BlockVector &in, - Vector &out) const; + /** + * Call + * @p get_interpolated_dof_values + * of the iterator with the + * given arguments. + */ + virtual + void + get_interpolated_dof_values (const PETScWrappers::MPI::BlockVector &in, + Vector &out) const = 0; #endif #ifdef DEAL_II_USE_TRILINOS -- 2.39.5