Resolve 'unused variable' warning
authoralpar
Thu, 07 Sep 2006 13:35:48 +0000
changeset 2209d3425607d41a
parent 2208 37b5c870a953
child 2210 25aab9493dd2
Resolve 'unused variable' warning
demo/hello_world.cc
demo/maps_summary.cc
     1.1 --- a/demo/hello_world.cc	Thu Sep 07 13:34:14 2006 +0000
     1.2 +++ b/demo/hello_world.cc	Thu Sep 07 13:35:48 2006 +0000
     1.3 @@ -35,7 +35,7 @@
     1.4  typedef ListGraph::Edge  Edge;
     1.5  
     1.6  
     1.7 -int  main( int argc, char *argv[] )
     1.8 +int main()
     1.9  {
    1.10    // Declare the graph itself and a NodeMap, witch will store the characters
    1.11    // assigned to the nodes
     2.1 --- a/demo/maps_summary.cc	Thu Sep 07 13:34:14 2006 +0000
     2.2 +++ b/demo/maps_summary.cc	Thu Sep 07 13:35:48 2006 +0000
     2.3 @@ -40,7 +40,7 @@
     2.4  }
     2.5  
     2.6  
     2.7 -int  main( int argc, char *argv[] )
     2.8 +int  main()
     2.9  {
    2.10    ListGraph  gr;
    2.11    ListGraph::NodeMap<double>  value(gr, 0.0);