[Lemon-commits] [lemon_svn] klao: r1159 - hugo/trunk/src/test

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:43:35 CET 2006


Author: klao
Date: Wed Sep 15 16:38:13 2004
New Revision: 1159

Modified:
   hugo/trunk/src/test/preflow_test.cc

Log:
Forgotten std::
Apropos, why does it compile without it?


Modified: hugo/trunk/src/test/preflow_test.cc
==============================================================================
--- hugo/trunk/src/test/preflow_test.cc	(original)
+++ hugo/trunk/src/test/preflow_test.cc	Wed Sep 15 16:38:13 2004
@@ -69,9 +69,9 @@
 
   typedef Preflow<Graph, int> PType;
 
-  string f_name;
+  std::string f_name;
   if( getenv("srcdir") ) {
-    f_name = string(getenv("srcdir")) + "/preflow_graph.inp";
+    f_name = std::string(getenv("srcdir")) + "/preflow_graph.inp";
   }
   else {
     f_name = "preflow_graph.inp";



More information about the Lemon-commits mailing list