diff --git a/doc/html/index.html b/doc/html/index.html index 6eb8b42..27ee9ba 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -30,7 +30,7 @@
Copyright © 2003 -2010 Thorsten Ottosen, Neil Groves
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -135,7 +135,7 @@Last revised: April 08, 2010 at 18:38:56 GMT |
+Last revised: April 11, 2010 at 21:49:16 GMT |
@@ -75,7 +75,7 @@ Traversal Iterator.
diff --git a/doc/html/range/concepts/concept_checking.html b/doc/html/range/concepts/concept_checking.html index a20c28a..b5d5407 100644 --- a/doc/html/range/concepts/concept_checking.html +++ b/doc/html/range/concepts/concept_checking.html @@ -79,7 +79,7 @@
diff --git a/doc/html/range/concepts/forward_range.html b/doc/html/range/concepts/forward_range.html index 1e2d2a0..919f6dd 100644 --- a/doc/html/range/concepts/forward_range.html +++ b/doc/html/range/concepts/forward_range.html @@ -27,7 +27,7 @@ Forward Range
@@ -73,14 +73,14 @@ Traversal Iterator.
diff --git a/doc/html/range/concepts/random_access_range.html b/doc/html/range/concepts/random_access_range.html index 94e16de..a695e97 100644 --- a/doc/html/range/concepts/random_access_range.html +++ b/doc/html/range/concepts/random_access_range.html @@ -27,7 +27,7 @@ Random Access Range
@@ -35,7 +35,7 @@ Access Traversal Iterator.
boost::size(a)
completes in amortized constant time.
@@ -73,7 +73,7 @@ Pass Iterator.
diff --git a/doc/html/range/mfc_atl.html b/doc/html/range/mfc_atl.html index 9fc1da3..63558aa 100644 --- a/doc/html/range/mfc_atl.html +++ b/doc/html/range/mfc_atl.html @@ -34,7 +34,7 @@
diff --git a/doc/html/range/reference/adaptors/adaptors_introduction.html b/doc/html/range/reference/adaptors/adaptors_introduction.html
index b1efce7..e1e4e26 100644
--- a/doc/html/range/reference/adaptors/adaptors_introduction.html
+++ b/doc/html/range/reference/adaptors/adaptors_introduction.html
@@ -122,7 +122,7 @@
situations, you will really appreciate the succinctness of operator|()
.
template<class RandomAccessRange> -void make_heap(RandomAccessRange& rng); +RandomAccessRange& make_heap(RandomAccessRange& rng); template<class RandomAccessRange> -void make_heap(const RandomAccessRange& rng); +const RandomAccessRange& make_heap(const RandomAccessRange& rng); template<class RandomAccessRange, class Compare> -void make_heap(RandomAccessRange& rng, Compare pred); +RandomAccessRange& make_heap(RandomAccessRange& rng, Compare pred); template<class RandomAccessRange, class Compare> -void make_heap(const RandomAccessRange& rng, Compare pred); +const RandomAccessRange& make_heap(const RandomAccessRange& rng, Compare pred);
@@ -61,14 +61,14 @@ the predicate versions.
Defined in the header file boost/range/algorithm/heap_algorithm.hpp
@@ -119,7 +119,7 @@
@@ -138,7 +138,7 @@