From 2d769a574579bb4fcc4fe18df2587dee0cbe814e Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 30 Apr 2018 09:09:25 -0400 Subject: [PATCH] Avoid using '**/' at the end of comments. --- include/deal.II/grid/manifold_lib.h | 2 +- include/deal.II/matrix_free/fe_evaluation.h | 6 +++--- include/deal.II/matrix_free/matrix_free.h | 4 ++-- source/base/quadrature_lib.cc | 24 +++++++-------------- 4 files changed, 14 insertions(+), 22 deletions(-) diff --git a/include/deal.II/grid/manifold_lib.h b/include/deal.II/grid/manifold_lib.h index 6a0f3e1840..5d651f0660 100644 --- a/include/deal.II/grid/manifold_lib.h +++ b/include/deal.II/grid/manifold_lib.h @@ -355,7 +355,7 @@ private: /** * A manifold description to be used for get_new_point in 2D. - **/ + */ const PolarManifold polar_manifold; }; diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 0e0389b60b..e664e073ff 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -911,12 +911,12 @@ protected: /** * A pointer to the normal vectors at faces. - **/ + */ const Tensor<1,dim,VectorizedArray > *normal_vectors; /** * A pointer to the normal vectors times the jacobian at faces. - **/ + */ const Tensor<1,dim,VectorizedArray > *normal_x_jacobian; /** @@ -933,7 +933,7 @@ protected: /** * Flag holding information whether a face is an interior or exterior face * according to the defined direction of the normal. Not used for cells. - **/ + */ bool is_interior_face; /** diff --git a/include/deal.II/matrix_free/matrix_free.h b/include/deal.II/matrix_free/matrix_free.h index 22fd5bc7cd..d2ee183d39 100644 --- a/include/deal.II/matrix_free/matrix_free.h +++ b/include/deal.II/matrix_free/matrix_free.h @@ -385,7 +385,7 @@ public: * the fabric, it may be faster to not overlap and wait for the data to * arrive. The default is true, i.e., communication and computation are * overlapped. - **/ + */ bool overlap_communication_computation; /** @@ -394,7 +394,7 @@ public: * MatrixFree should have access to all neighbors on locally owned cells, * this option enables adding the respective faces at the end of the face * range. - **/ + */ bool hold_all_faces_to_owned_cells; /** diff --git a/source/base/quadrature_lib.cc b/source/base/quadrature_lib.cc index b13d48904a..e9c59f7553 100644 --- a/source/base/quadrature_lib.cc +++ b/source/base/quadrature_lib.cc @@ -854,11 +854,9 @@ template QTelles::QTelles ( const Quadrature<1> &base_quad, const Point &singularity) : -/** -* We need the explicit implementation if dim == 1. If dim > 1 we use the -* former implementation and apply a tensorial product to obtain the higher -* dimensions. -**/ + // We need the explicit implementation if dim == 1. If dim > 1 we use the + // former implementation and apply a tensorial product to obtain the higher + // dimensions. Quadrature( dim == 2 ? QAnisotropic( @@ -877,10 +875,8 @@ template QTelles::QTelles ( const unsigned int n, const Point &singularity) : -/** -* In this case we map the standard Gauss Legendre formula using the given -* singularity point coordinates. -**/ + // In this case we map the standard Gauss Legendre formula using the given + // singularity point coordinates. Quadrature(QTelles(QGauss<1>(n), singularity)) {} @@ -890,15 +886,11 @@ template <> QTelles<1>::QTelles ( const Quadrature<1> &base_quad, const Point<1> &singularity) : -/** -* We explicitly implement the Telles' variable change if dim == 1. -**/ + // We explicitly implement the Telles' variable change if dim == 1. Quadrature<1>(base_quad) { - /** - * We define all the constants to be used in the implementation of - * Telles' rule - **/ + // We define all the constants to be used in the implementation of + // Telles' rule const double eta_bar = singularity[0] * 2. - 1.; const double eta_star = eta_bar * eta_bar - 1.; double gamma_bar; -- 2.39.5