From dedb3ba27be073a93a6c9e67f5e799055c578cb4 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 4 Aug 2005 17:39:42 +0000 Subject: [PATCH] Fixed some of the include statements in the documentation. [SVN r30464] --- doc/hash.qbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/hash.qbk b/doc/hash.qbk index d68e765..ca90959 100644 --- a/doc/hash.qbk +++ b/doc/hash.qbk @@ -83,7 +83,7 @@ __boost_hash, just use an extra template parameter: To use __boost_hash directly, create an instance and call it as a function: - #include + #include int main() { @@ -96,7 +96,7 @@ If you wish to make use of the extensions, you will need to include the appropriate header (see the [link hash.reference.specification reference documentation] for the full list). - #include + #include int main() { @@ -105,7 +105,7 @@ appropriate header (see the std::size_t h = pair_hash(std::make_pair(1, 2)); } -Or alternatively, include `` for the full library. +Or alternatively, include `` for the full library. For an example of generic use, here is a function to generate a vector containing the hashes of the elements of a container: