|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r68972 - trunk/libs/graph/doc
From: jewillco_at_[hidden]
Date: 2011-02-17 15:03:03
Author: jewillco
Date: 2011-02-17 15:02:58 EST (Thu, 17 Feb 2011)
New Revision: 68972
URL: http://svn.boost.org/trac/boost/changeset/68972
Log:
Fixed escaping using patch from #5199; fixes #5199
Text files modified:
trunk/libs/graph/doc/subgraph.html | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/libs/graph/doc/subgraph.html
==============================================================================
--- trunk/libs/graph/doc/subgraph.html (original)
+++ trunk/libs/graph/doc/subgraph.html 2011-02-17 15:02:58 EST (Thu, 17 Feb 2011)
@@ -76,9 +76,9 @@
and subgraphs in Figure 1, so we will need a total of six vertices.
<pre>
-typedef adjacency_list_traits<vecS, vecS, directedS> Traits;
-typedef subgraph< adjacency_list<vecS, vecS, directedS,
- no_property, property<edge_index_t, int> > > Graph;
+typedef adjacency_list_traits< vecS, vecS, directedS > Traits;
+typedef subgraph< adjacency_list< vecS, vecS, directedS,
+ no_property, property< edge_index_t, int > > > Graph;
const int N = 6;
Graph G0(N);
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk