# HG changeset patch # User alpar # Date 1160043538 0 # Node ID ae8562537502f3212ff901342b5ef35572cf85c5 # Parent 06faf3f06d67a83a4040a1fecd3921af9a9d210d Fix a bug and two warnings diff -r 06faf3f06d67 -r ae8562537502 benchmark/swap_bipartite_bench.cc --- a/benchmark/swap_bipartite_bench.cc Tue Oct 03 11:46:39 2006 +0000 +++ b/benchmark/swap_bipartite_bench.cc Thu Oct 05 10:18:58 2006 +0000 @@ -8,7 +8,6 @@ #include #include -#include #include #include diff -r 06faf3f06d67 -r ae8562537502 demo/topological_ordering.cc --- a/demo/topological_ordering.cc Tue Oct 03 11:46:39 2006 +0000 +++ b/demo/topological_ordering.cc Thu Oct 05 10:18:58 2006 +0000 @@ -42,7 +42,7 @@ OrderedList order; - SerializingWriteMap( const GR& gr ) {} + SerializingWriteMap( const GR& ) {} void set( const Key& k, const Value& v ) { if( v ) order.push_front(k); @@ -54,7 +54,7 @@ }; -int main( int argc, char *argv[] ) +int main() { std::cout << "Topological Ordering demo" << std::endl;