From: David Wells Date: Sat, 29 Aug 2015 21:48:50 +0000 (-0400) Subject: Update UpdateFlags documentation X-Git-Tag: v8.4.0-rc2~527^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1464%2Fhead;p=dealii.git Update UpdateFlags documentation The '@deprecation' attribute creates a new block, so descriptions of deprecated features should be complete sentences. I also added additional hover text descriptions. --- diff --git a/include/deal.II/fe/fe_update_flags.h b/include/deal.II/fe/fe_update_flags.h index 5a93350dec..7f37418263 100644 --- a/include/deal.II/fe/fe_update_flags.h +++ b/include/deal.II/fe/fe_update_flags.h @@ -138,11 +138,11 @@ enum UpdateFlags */ update_normal_vectors = 0x0040, /** - * @deprecated Use #update_normal_vectors + * @deprecated Use #update_normal_vectors instead. */ update_face_normal_vectors = update_normal_vectors, /** - * @deprecated Use #update_normal_vectors + * @deprecated Use #update_normal_vectors instead. */ update_cell_normal_vectors = update_normal_vectors, //! Volume element @@ -194,23 +194,25 @@ enum UpdateFlags */ update_volume_elements = 0x4000, /** - * @deprecated: this flag has no effect. + * @deprecated This flag has no effect. */ update_support_points = 0x10000, + //! Jacobian at generalized support points /** * Update the Jacobian of the mapping in generalized support points. */ update_support_jacobians = 0x20000, + //! inverse Jacobian at generalized support points /** * Update the inverse Jacobian of the mapping in generalized support points. */ update_support_inverse_jacobians = 0x40000, /** - * @deprecated Update quadrature points + * @deprecated Use #update_quadrature_points instead. */ update_q_points = update_quadrature_points, /** - * @deprecated Update second derivatives. + * @deprecated Use #update_hessians instead. */ update_second_derivatives = update_hessians, //! Values needed for Piola transform