# HG changeset patch # User alpar # Date 1157636148 0 # Node ID d3425607d41a939d9d51b94909f9bf8929270ffc # Parent 37b5c870a953174ac6026344eea0ae158f329651 Resolve 'unused variable' warning diff -r 37b5c870a953 -r d3425607d41a demo/hello_world.cc --- a/demo/hello_world.cc Thu Sep 07 13:34:14 2006 +0000 +++ b/demo/hello_world.cc Thu Sep 07 13:35:48 2006 +0000 @@ -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 diff -r 37b5c870a953 -r d3425607d41a demo/maps_summary.cc --- a/demo/maps_summary.cc Thu Sep 07 13:34:14 2006 +0000 +++ b/demo/maps_summary.cc Thu Sep 07 13:35:48 2006 +0000 @@ -40,7 +40,7 @@ } -int main( int argc, char *argv[] ) +int main() { ListGraph gr; ListGraph::NodeMap value(gr, 0.0);