demo/topological_ordering.cc
changeset 2232 ae8562537502
parent 2216 1e45cdeea3cc
child 2391 14a343be7a5a
     1.1 --- a/demo/topological_ordering.cc	Tue Oct 03 11:46:39 2006 +0000
     1.2 +++ b/demo/topological_ordering.cc	Thu Oct 05 10:18:58 2006 +0000
     1.3 @@ -42,7 +42,7 @@
     1.4  
     1.5    OrderedList  order;
     1.6  
     1.7 -  SerializingWriteMap( const GR& gr ) {}
     1.8 +  SerializingWriteMap( const GR& ) {}
     1.9  
    1.10    void  set( const Key& k, const Value& v ) {
    1.11      if( v ) order.push_front(k);
    1.12 @@ -54,7 +54,7 @@
    1.13  };
    1.14  
    1.15  
    1.16 -int  main( int argc, char *argv[] )
    1.17 +int main()
    1.18  {
    1.19    std::cout << "Topological Ordering demo" << std::endl;
    1.20