From 971224a282d28c757346ea38634b9ca5772529da Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 15 Feb 2009 19:32:04 +0000 Subject: [PATCH] Use the new 'boost:' links for the hash, unordered and quickbook documentation. [SVN r51262] --- doc/changes.qbk | 4 ++-- doc/hash_equality.qbk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/changes.qbk b/doc/changes.qbk index 204b427b..cb48dad4 100644 --- a/doc/changes.qbk +++ b/doc/changes.qbk @@ -44,7 +44,7 @@ First official release. [h2 Boost 1.38.0] -* Use [@../../libs/utility/swap.html `boost::swap`]. +* Use [@boost:/libs/utility/swap.html `boost::swap`]. * [@https://svn.boost.org/trac/boost/ticket/2237 Ticket 2237]: Document that the equality and inequality operators are undefined for two objects if their equality predicates aren't equivalent. Thanks to Daniel @@ -53,7 +53,7 @@ First official release. Use a larger prime number list. Thanks to Thorsten Ottosen and Hervé Brönnimann. * Use - [@../../libs/type_traits/doc/html/boost_typetraits/category/alignment.html + [@boost:/libs/type_traits/doc/html/boost_typetraits/category/alignment.html aligned storage] to store the types. This changes the way the allocator is used to construct nodes. It used to construct the node with two calls to the allocator's `construct` method - once for the pointers and once for the diff --git a/doc/hash_equality.qbk b/doc/hash_equality.qbk index 74004b49..8fc08fb3 100644 --- a/doc/hash_equality.qbk +++ b/doc/hash_equality.qbk @@ -23,7 +23,7 @@ but not the equality predicate. For example, if you wanted to use the [import src_code/dictionary.cpp] [case_sensitive_dictionary_fnv] -There is an [@../../libs/unordered/examples/fnv1.hpp implementation +There is an [@boost:/libs/unordered/examples/fnv1.hpp implementation of FNV-1] in the examples directory. If you wish to use a different equality function, @@ -38,7 +38,7 @@ Which you can then use in a case insensitive dictionary: [case_insensitive_dictionary] This is a simplified version of the example at -[@../../libs/unordered/examples/case_insensitive.hpp /libs/unordered/examples/case_insensitive.hpp] +[@boost:/libs/unordered/examples/case_insensitive.hpp /libs/unordered/examples/case_insensitive.hpp] which supports other locales and string types. [caution