From: Wolfgang Bangerth Date: Fri, 12 Feb 2010 03:59:59 +0000 (+0000) Subject: Mark functions virtual as necessary. X-Git-Tag: v8.0.0~6492 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85ab907eecf44dd39d4721b333ad8514a6bee9e2;p=dealii.git Mark functions virtual as necessary. git-svn-id: https://svn.dealii.org/trunk@20564 0785d39b-7218-0410-832d-ea1e28bc413d --- 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