[cig-commits] [commit] master: Make test compile. (504af48)

cig_noreply at geodynamics.org cig_noreply at geodynamics.org
Mon Jun 23 04:34:31 PDT 2014


Repository : https://github.com/geodynamics/aspect

On branch  : master
Link       : https://github.com/geodynamics/aspect/compare/17d5dd198c2cf9608a846c965b1d40ff89e227e6...ca96c8282ef6387c677dbe4bcc863cc6b79d3169

>---------------------------------------------------------------

commit 504af48726661804596094ed47f9242334107cd0
Author: Wolfgang Bangerth <bangerth at math.tamu.edu>
Date:   Mon Jun 23 04:28:41 2014 -0500

    Make test compile.


>---------------------------------------------------------------

504af48726661804596094ed47f9242334107cd0
 tests/find_postprocess.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/find_postprocess.cc b/tests/find_postprocess.cc
index f7e1d74..a756054 100644
--- a/tests/find_postprocess.cc
+++ b/tests/find_postprocess.cc
@@ -49,13 +49,13 @@ namespace aspect
         const Postprocess::PressureStatistics<dim> * pressure_postprocess=
             this->template find_postprocessor<const Postprocess::PressureStatistics<dim> >();
         if(pressure_postprocess==NULL)
-          cout<<"PressureStatistics is not found!"<<endl;
+	  std::cout << "PressureStatistics is not found!" << std::endl;
         else
-          cout<<"PressureStatistics is found!"<<endl;
+	  std::cout << "PressureStatistics is found!" << std::endl;
         if(heat_flux_postprocess==NULL)
-          cout<<"HeatFluxStatistics is not found!"<<endl;
+	  std::cout << "HeatFluxStatistics is not found!" << std::endl;
         else
-          cout<<"HeatFluxStatistics is found!"<<endl;         
+	  std::cout << "HeatFluxStatistics is found!" << std::endl;         
     }
   }
 }



More information about the CIG-COMMITS mailing list