From: young Date: Thu, 13 Feb 2014 11:17:10 +0000 (+0000) Subject: Revert my patch back to Denis original. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=afe6a70d2c329c6e430a803a7d8b1b6f04607fa4;p=dealii-svn.git Revert my patch back to Denis original. git-svn-id: https://svn.dealii.org/branches/branch_petscscalar_complex@32478 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/fe/fe_values.decl.1.inst.in b/deal.II/source/fe/fe_values.decl.1.inst.in index 83575b40a9..9ec59b45a1 100644 --- a/deal.II/source/fe/fe_values.decl.1.inst.in +++ b/deal.II/source/fe/fe_values.decl.1.inst.in @@ -39,6 +39,6 @@ for (VEC : COMPLEX_SERIAL_VECTORS; S : COMPLEX_SCALARS) /// given arguments. virtual void - get_interpolated_dof_values (const VEC &in, - Vector &out) const = 0; + get_interpolated_dof_values (const VEC &in, + Vector > &out) const = 0; } diff --git a/deal.II/source/fe/fe_values.decl.2.inst.in b/deal.II/source/fe/fe_values.decl.2.inst.in index cb183eeda6..03d8b5cf89 100644 --- a/deal.II/source/fe/fe_values.decl.2.inst.in +++ b/deal.II/source/fe/fe_values.decl.2.inst.in @@ -27,18 +27,18 @@ for (VEC : REAL_SERIAL_VECTORS; S : REAL_SCALARS) /// given arguments. virtual void - get_interpolated_dof_values (const VEC &in, - Vector &out) const; + get_interpolated_dof_values (const VEC &in, + Vector &out) const; } -for (VEC : COMPLEX_SERIAL_VECTORS; S : COMPLEX_SCALARS) +for (VEC : COMPLEX_SERIAL_VECTORS) { /// Call /// @p get_interpolated_dof_values - /// of the iterator with the + /// of the iterator with the /// given arguments. virtual void - get_interpolated_dof_values (const VEC &in, - Vector &out) const; + get_interpolated_dof_values (const VEC &in, + Vector > &out) const; }