From ac32eb5e0c8222cf6076ad99e43064b47ab86a89 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 20 Oct 2017 10:28:16 +0200 Subject: [PATCH] Avoid anonymous namespace. --- include/deal.II/base/partitioner.templates.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/base/partitioner.templates.h b/include/deal.II/base/partitioner.templates.h index 1e3a156913..0b0a45e567 100644 --- a/include/deal.II/base/partitioner.templates.h +++ b/include/deal.II/base/partitioner.templates.h @@ -283,7 +283,7 @@ namespace Utilities - namespace + namespace internal { // In the import_from_ghosted_array_finish we need to invoke abs() also // on unsigned data types, which is ill-formed on newer C++ @@ -379,8 +379,8 @@ namespace Utilities // the face, values on this face obtained from each side might // be different due to additions being done in different order. Assert(*read_position == Number() || - get_abs(locally_owned_array[j] - *read_position) <= - get_abs(locally_owned_array[j] + *read_position) * + internal::get_abs(locally_owned_array[j] - *read_position) <= + internal::get_abs(locally_owned_array[j] + *read_position) * 100000. * std::numeric_limits::real_type>::epsilon(), typename LinearAlgebra::distributed::Vector:: -- 2.39.5