Update of /cvsroot/boost/boost/libs/graph/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26298/libs/graph/test

Modified Files:
        subgraph.cpp 
Log Message:
Rename/remove some detail algorithms to avoid a conflict with the string 
algorithms library

Index: subgraph.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/graph/test/subgraph.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- subgraph.cpp        28 Jan 2005 08:08:18 -0000      1.14
+++ subgraph.cpp        31 May 2007 12:14:31 -0000      1.15
@@ -72,8 +72,8 @@
 
     // compute induced edges
     BGL_FORALL_EDGES(e, g, subgraph_t)
-      if (contains(sub_global_map, source(e, g))
-          && contains(sub_global_map, target(e, g)))
+      if (container_contains(sub_global_map, source(e, g))
+          && container_contains(sub_global_map, target(e, g)))
         sub_edge_set.push_back(std::make_pair(global_sub_map[source(e, g)],
                                               global_sub_map[target(e, g)]));
 


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to