From 9a4e2a63f3efd0a827ea2caad3736cfb06855999 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 12 Apr 2020 19:56:06 -0400 Subject: [PATCH] Don't use dealii:: in tria_objects.h --- include/deal.II/grid/tria_objects.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/deal.II/grid/tria_objects.h b/include/deal.II/grid/tria_objects.h index a2855be3b8..123db9be92 100644 --- a/include/deal.II/grid/tria_objects.h +++ b/include/deal.II/grid/tria_objects.h @@ -117,7 +117,7 @@ namespace internal * processed. * * You can clear all used flags using - * dealii::Triangulation::clear_user_flags(). + * Triangulation::clear_user_flags(). */ std::vector user_flags; @@ -193,7 +193,7 @@ namespace internal /** * Return an iterator to the next free slot for a single object. This - * function is only used by dealii::Triangulation::execute_refinement() + * function is only used by Triangulation::execute_refinement() * in 3D. * * @warning Interestingly, this function is not used for 1D or 2D @@ -204,11 +204,11 @@ namespace internal */ template dealii::TriaRawIterator> - next_free_single_object(const dealii::Triangulation &tria); + next_free_single_object(const Triangulation &tria); /** * Return an iterator to the next free slot for a pair of objects. This - * function is only used by dealii::Triangulation::execute_refinement() + * function is only used by Triangulation::execute_refinement() * in 3D. * * @warning Interestingly, this function is not used for 1D or 2D @@ -219,16 +219,16 @@ namespace internal */ template dealii::TriaRawIterator> - next_free_pair_object(const dealii::Triangulation &tria); + next_free_pair_object(const Triangulation &tria); /** * Return an iterator to the next free slot for a pair of hexes. Only * implemented for G=Hexahedron. */ template - typename dealii::Triangulation::raw_hex_iterator - next_free_hex(const dealii::Triangulation &tria, - const unsigned int level); + typename Triangulation::raw_hex_iterator + next_free_hex(const Triangulation &tria, + const unsigned int level); /** * Clear all the data contained in this object. @@ -331,7 +331,7 @@ namespace internal << ", which is not as expected."); /** - * dealii::Triangulation objects can either access a user pointer or a + * Triangulation objects can either access a user pointer or a * user index. What you tried to do is trying to access one of those * after using the other. * @@ -792,7 +792,7 @@ namespace internal template dealii::TriaRawIterator> TriaObjects::next_free_single_object( - const dealii::Triangulation &tria) + const Triangulation &tria) { // TODO: Think of a way to ensure that we are using the correct // triangulation, i.e. the one containing *this. @@ -845,7 +845,7 @@ namespace internal template dealii::TriaRawIterator> TriaObjects::next_free_pair_object( - const dealii::Triangulation &tria) + const Triangulation &tria) { // TODO: Think of a way to ensure that we are using the correct // triangulation, i.e. the one containing *this. -- 2.39.5