From fce966a95ac27f3684b495779b9c6cb1b9b969d1 Mon Sep 17 00:00:00 2001
From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org>
Date: Sun, 24 Apr 2011 22:43:57 -0700
Subject: [PATCH] BUG: fix missing std::

---
 Projections/otbConvertCartoToGeoPoint.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Projections/otbConvertCartoToGeoPoint.cxx b/Projections/otbConvertCartoToGeoPoint.cxx
index 1f3638f669..fade80676f 100644
--- a/Projections/otbConvertCartoToGeoPoint.cxx
+++ b/Projections/otbConvertCartoToGeoPoint.cxx
@@ -62,7 +62,7 @@ int generic_main_carto_geo(TMapProjection* mapProjection, otb::CommandLineArgume
     {
       std::string outputTestFileName = parseResult->GetParameterString("--OTBTesting",0);
 
-      ofstream outputTestFile;
+      std::ofstream outputTestFile;
       outputTestFile.open(outputTestFileName.c_str());
 
       outputTestFile << std::setprecision(10) << "Cartographic Point  (x , y)  : (" << cartoPoint[0] << "," << cartoPoint[1] << ")" << std::endl;
-- 
GitLab