diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 3482448..86f889a 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -15,7 +15,7 @@ boostbook standalone : hash : generate.section.toc.level=2 toc.section.depth=1 toc.max.depth=1 - pdf:boost.url.prefix=http://www.boost.org/doc/libs/release/libs/container_hash/hash/doc/html + pdf:boost.url.prefix=http://www.boost.org/doc/libs/release/libs/container_hash/doc/html ; ############################################################################### diff --git a/doc/changes.qbk b/doc/changes.qbk index 6cf74a8..2625e0c 100644 --- a/doc/changes.qbk +++ b/doc/changes.qbk @@ -19,8 +19,8 @@ * Use declarations for standard classes, so that the library doesn't need to include all of their headers -* Deprecated the `` headers. Now a single header, - <[headerref boost/container_hash/hash.hpp]> is used. +* Deprecated the `` headers. Now a single header, + <[headerref boost/functional/hash.hpp]> is used. * Add support for the `BOOST_HASH_NO_EXTENSIONS` macro, which disables the extensions to TR1. @@ -72,9 +72,9 @@ * Changed the warnings in the deprecated headers from 1.34.0 to errors. These will be removed in a future version of Boost. * Moved detail headers out of `boost/container_hash/detail`, since they are part of - container_hash/hash, not container_hash. `boost/container_hash/detail/container_fwd.hpp` + functional/hash, not container_hash. `boost/container_hash/detail/container_fwd.hpp` has been moved to `boost/detail/container_fwd.hpp` as it's used outside of - this library, the others have been moved to `boost/container_hash/hash/detail`. + this library, the others have been moved to `boost/functional/hash/detail`. [h2 Boost 1.39.0] diff --git a/doc/portability.qbk b/doc/portability.qbk index 7db3e56..d667b89 100644 --- a/doc/portability.qbk +++ b/doc/portability.qbk @@ -88,6 +88,6 @@ boost namespace: } Full code for this example is at -[@boost:/libs/container_hash/hash/examples/portable.cpp /libs/container_hash/hash/examples/portable.cpp]. +[@boost:/libs/container_hash/examples/portable.cpp /libs/container_hash/examples/portable.cpp]. [endsect] diff --git a/doc/tutorial.qbk b/doc/tutorial.qbk index 2c0d1f3..f91f173 100644 --- a/doc/tutorial.qbk +++ b/doc/tutorial.qbk @@ -110,9 +110,9 @@ And you can now use [classref boost::hash] with book: assert(books.find(dandelion) == books.end()); The full example can be found in: -[@boost:/libs/container_hash/hash/examples/books.hpp /libs/container_hash/hash/examples/books.hpp] +[@boost:/libs/container_hash/examples/books.hpp /libs/container_hash/examples/books.hpp] and -[@boost:/libs/container_hash/hash/examples/books.cpp /libs/container_hash/hash/examples/books.cpp]. +[@boost:/libs/container_hash/examples/books.cpp /libs/container_hash/examples/books.cpp]. [tip When writing a hash function, first look at how the equality function works. @@ -170,7 +170,7 @@ of point, it can be repeatedly called for any number of elements. It calls [funcref boost::hash_value hash_value] on the supplied element, and combines it with the seed. Full code for this example is at -[@boost:/libs/container_hash/hash/examples/point.cpp /libs/container_hash/hash/examples/point.cpp]. +[@boost:/libs/container_hash/examples/point.cpp /libs/container_hash/examples/point.cpp]. [note When using [funcref boost::hash_combine] the order of the @@ -206,7 +206,7 @@ header which forward declares [classref boost::hash], include the main header before instantiating [classref boost::hash]. When using a container that uses [classref boost::hash] it should do that for you, so your type will work fine with the boost hash containers. There's an example of this -in [@boost:/libs/container_hash/hash/examples/template.hpp template.hpp] and -[@boost:/libs/container_hash/hash/examples/template.cpp template.cpp]. +in [@boost:/libs/container_hash/examples/template.hpp template.hpp] and +[@boost:/libs/container_hash/examples/template.cpp template.cpp]. [endsect]