Index: boost_1_33_1/libs/graph/doc/file_dependency_example.html
===================================================================
--- boost_1_33_1.orig/libs/graph/doc/file_dependency_example.html
+++ boost_1_33_1/libs/graph/doc/file_dependency_example.html
@@ -131,7 +131,7 @@ the following sections.
       property&lt;vertex_color_t, default_color_type&gt;,
       property&lt;edge_weight_t, int&gt;
     &gt; Graph;
-  Graph g(N, used_by, used_by + sizeof(used_by) / sizeof(Edge));
+  Graph g(used_by, used_by + sizeof(used_by) / sizeof(Edge), N);
   typedef graph_traits&lt;Graph&gt;::vertex_descriptor Vertex;
 </PRE>
 
Index: boost_1_33_1/libs/graph/doc/write-graphviz.html
===================================================================
--- boost_1_33_1.orig/libs/graph/doc/write-graphviz.html
+++ boost_1_33_1/libs/graph/doc/write-graphviz.html
@@ -265,13 +265,15 @@ int main(int,char*[])
   };
   const int nedges = sizeof(used_by)/sizeof(Edge);
   int weights[nedges];
-  fill(weights, weights + nedges, 1);
+  std::fill(weights, weights + nedges, 1);
+
+  using namespace boost;
 
   typedef adjacency_list< vecS, vecS, directedS, 
       property< vertex_color_t, default_color_type >,
       property< edge_weight_t, int >
     > Graph;
-  Graph g(N, used_by, used_by + nedges, weights);
+  Graph g(used_by, used_by + nedges, weights, N);
 
   write_graphviz(std::cout, g, make_label_writer(name));
 }
