diff -r d4e911acef3d -r 70e2886211d5 src/test/sym_graph_test.h --- a/src/test/sym_graph_test.h Mon Oct 04 17:13:21 2004 +0000 +++ b/src/test/sym_graph_test.h Tue Oct 05 09:41:05 2004 +0000 @@ -24,7 +24,11 @@ //! \file //! \brief Some utility to test symmetric graph classes. namespace lemon { + + /// \e + /// \todo This should go to lemon/skeleton/symgraph.h + /// template void checkCompileStaticSymGraph(Graph &G) { typedef typename Graph::Node Node; @@ -36,7 +40,7 @@ typedef typename Graph::InEdgeIt InEdgeIt; typedef typename Graph::OutEdgeIt OutEdgeIt; - checkCompileStaticGraph(G); + lemon::skeleton::checkCompileStaticGraph(G); { SymEdge i; SymEdge j(i); SymEdge k(INVALID); @@ -153,7 +157,7 @@ template void checkCompileErasableSymGraph(Graph &G) { checkCompileSymGraph(G); - checkCompileGraphEraseNode(G); + lemon::skeleton::checkCompileGraphEraseNode(G); checkCompileSymGraphEraseSymEdge(G); }