From: Marco Tezzele Date: Mon, 13 Apr 2015 13:12:18 +0000 (+0200) Subject: Fixed usage in the documentation of mapping_fe_field.h X-Git-Tag: v8.3.0-rc1~267^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc4814b05348c6414a18406f7f9e077d3a91ca8a;p=dealii.git Fixed usage in the documentation of 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 108565b16d..8d9666c26c 100644 --- a/include/deal.II/fe/mapping_fe_field.h +++ b/include/deal.II/fe/mapping_fe_field.h @@ -60,10 +60,10 @@ DEAL_II_NAMESPACE_OPEN * const FESystem fesystem(feq, spacedim); * DoFHandler dhq(triangulation); * dhq.distribute_dofs(fesystem); + * const ComponentMask mask(spacedim, true); * Vector eulerq(dhq.n_dofs()); * // Fills the euler vector with information from the Triangulation - * VectorTools::get_position_vector(dhq, eulerq); - * const ComponentMask mask(spacedim, true); + * VectorTools::get_position_vector(dhq, eulerq, mask); * MappingFEField map(eulerq, dhq, mask); * @endcode *