Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / graph / doc / opposite.html
index 6e3f12d..f9be2e4 100644 (file)
@@ -56,7 +56,7 @@ target, then this function returns the source vertex.
 edge_descriptor e;
 ...
 vertex_descriptor u, v;
-tie(u, v) = incident(e, g);
+boost::tie(u, v) = incident(e, g);
 assert(v == opposite(e, u, g));
 assert(u == opposite(e, v, g));
 </pre>