[Lemon-commits] [lemon_svn] alpar: r2935 - hugo/trunk/demo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:20 CET 2006
Author: alpar
Date: Thu Sep 7 15:35:48 2006
New Revision: 2935
Modified:
hugo/trunk/demo/hello_world.cc
hugo/trunk/demo/maps_summary.cc
Log:
Resolve 'unused variable' warning
Modified: hugo/trunk/demo/hello_world.cc
==============================================================================
--- hugo/trunk/demo/hello_world.cc (original)
+++ hugo/trunk/demo/hello_world.cc Thu Sep 7 15:35:48 2006
@@ -35,7 +35,7 @@
typedef ListGraph::Edge Edge;
-int main( int argc, char *argv[] )
+int main()
{
// Declare the graph itself and a NodeMap, witch will store the characters
// assigned to the nodes
Modified: hugo/trunk/demo/maps_summary.cc
==============================================================================
--- hugo/trunk/demo/maps_summary.cc (original)
+++ hugo/trunk/demo/maps_summary.cc Thu Sep 7 15:35:48 2006
@@ -40,7 +40,7 @@
}
-int main( int argc, char *argv[] )
+int main()
{
ListGraph gr;
ListGraph::NodeMap<double> value(gr, 0.0);
More information about the Lemon-commits
mailing list