From 0254459014e35ae2df202527e4d03ace2f09002d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 20 Apr 2014 17:28:43 +0000 Subject: [PATCH] Qualify endl properly. git-svn-id: https://svn.dealii.org/trunk@32795 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/mpi/trilinos_compress_bug.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/mpi/trilinos_compress_bug.cc b/tests/mpi/trilinos_compress_bug.cc index c481a1eb50..06326227d9 100644 --- a/tests/mpi/trilinos_compress_bug.cc +++ b/tests/mpi/trilinos_compress_bug.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2011 - 2013 by the deal.II authors +// Copyright (C) 2011 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -72,12 +72,12 @@ void test () test(locally_owned.nth_index_in_set(5))=7; if (myid==0) - deallog << "before compress: " << test(locally_owned.nth_index_in_set(5)) << endl; + deallog << "before compress: " << test(locally_owned.nth_index_in_set(5)) << std::endl; test.compress(VectorOperation::insert); if (myid==0) - deallog << "after compress: " << test(locally_owned.nth_index_in_set(5)) << endl; + deallog << "after compress: " << test(locally_owned.nth_index_in_set(5)) << std::endl; // Trilinos produces a 0 instead of a 7 here. Why? if (myid==0) -- 2.39.5