From: Daniel Arndt Date: Thu, 15 Oct 2015 15:47:53 +0000 (+0200) Subject: Fixup order of template arguments in mapping_fe_field.h X-Git-Tag: v8.4.0-rc2~309^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa0c479c0f6e39aee94b48b307d8c714f7c0c45c;p=dealii.git Fixup order of template arguments in mapping_fe_field.h --- diff --git a/include/deal.II/fe/mapping_fe_field.h b/include/deal.II/fe/mapping_fe_field.h index de24cfbbf9..b44ddeea70 100644 --- a/include/deal.II/fe/mapping_fe_field.h +++ b/include/deal.II/fe/mapping_fe_field.h @@ -489,7 +489,7 @@ private: /** * Reference to the vector of shifts. */ - SmartPointer > euler_vector; + SmartPointer > euler_vector; /** * A FiniteElement object which is only needed in 3D, since it knows how to @@ -498,13 +498,13 @@ private: * prevent construction in 1D and 2D, but since memory and time requirements * are not particularly high this seems unnecessary at the moment. */ - SmartPointer, MappingFEField > fe; + SmartPointer, MappingFEField > fe; /** * Pointer to the DoFHandler to which the mapping vector is associated. */ - SmartPointer > euler_dof_handler; + SmartPointer > euler_dof_handler; private: /**