From 6e935c3b2b4eb56386c198511f9ed8294a035243 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 27 Apr 2018 13:38:10 -0600 Subject: [PATCH] Namespace qualify a function call. GCC 4.8.4 marks the call as ambiguous between std::to_string and Patterns::Tools::to_string. Make the compiler happy by being explicit, whether or not that is actually necessary. --- tests/base/mpi_some_to_some_02.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/base/mpi_some_to_some_02.cc b/tests/base/mpi_some_to_some_02.cc index f42e905760..dcf8e07802 100644 --- a/tests/base/mpi_some_to_some_02.cc +++ b/tests/base/mpi_some_to_some_02.cc @@ -85,7 +85,7 @@ void test(const unsigned int max_particles, deallog << "Proc " << my_proc << "/" << n_procs << ": sharing with " - << to_string(shared_procs_set) << std::endl; + << Patterns::Tools::to_string(shared_procs_set) << std::endl; for (unsigned int i=0; i