From: bangerth Date: Sun, 20 Apr 2014 17:28:43 +0000 (+0000) Subject: Qualify endl properly. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ab327d1d0530e2fff70d067ade1e9a6b0cf0e6b;p=dealii-svn.git Qualify endl properly. git-svn-id: https://svn.dealii.org/trunk@32795 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)