diff -r d4e911acef3d -r 70e2886211d5 src/test/graph_wrapper_test.cc --- a/src/test/graph_wrapper_test.cc Mon Oct 04 17:13:21 2004 +0000 +++ b/src/test/graph_wrapper_test.cc Tue Oct 05 09:41:05 2004 +0000 @@ -38,24 +38,24 @@ //Compile GraphWrapper typedef GraphWrapper GW; -template void checkCompileStaticGraph(GW &); +template void lemon::skeleton::checkCompileStaticGraph(GW &); //Compile RevGraphWrapper typedef RevGraphWrapper RevGW; -template void checkCompileStaticGraph(RevGW &); +template void lemon::skeleton::checkCompileStaticGraph(RevGW &); //Compile SubGraphWrapper typedef SubGraphWrapper, Graph::EdgeMap > SubGW; -template void checkCompileStaticGraph(SubGW &); +template void lemon::skeleton::checkCompileStaticGraph(SubGW &); //Compile NodeSubGraphWrapper typedef NodeSubGraphWrapper > NodeSubGW; -template void checkCompileStaticGraph(NodeSubGW &); +template void lemon::skeleton::checkCompileStaticGraph(NodeSubGW &); //Compile EdgeSubGraphWrapper typedef EdgeSubGraphWrapper > EdgeSubGW; -template void checkCompileStaticGraph(EdgeSubGW &); +template void lemon::skeleton::checkCompileStaticGraph(EdgeSubGW &); //Compile UndirGraphWrapper /// \bug UndirGraphWrapper cannot pass the StaticGraph test @@ -69,24 +69,25 @@ //Compile SubBidirGraphWrapper typedef SubBidirGraphWrapper, Graph::EdgeMap > SubBDGW; -template void checkCompileStaticGraph(SubBDGW &); +template void lemon::skeleton::checkCompileStaticGraph(SubBDGW &); //Compile BidirGraphWrapper typedef BidirGraphWrapper BidirGW; -template void checkCompileStaticGraph(BidirGW &); +template void lemon::skeleton::checkCompileStaticGraph(BidirGW &); //Compile BidirGraph typedef BidirGraph BidirG; -template void checkCompileStaticGraph(BidirG &); +template void lemon::skeleton::checkCompileStaticGraph(BidirG &); //Compile ResGraphWrapper typedef ResGraphWrapper, Graph::EdgeMap > ResGW; -template void checkCompileStaticGraph(ResGW &); +template void lemon::skeleton::checkCompileStaticGraph(ResGW &); //Compile ErasingFirstGraphWrapper typedef ErasingFirstGraphWrapper > ErasingFirstGW; -template void checkCompileStaticGraph(ErasingFirstGW &); +template +void lemon::skeleton::checkCompileStaticGraph(ErasingFirstGW &); int main()