From d5fdc0b47ef5ec8f560c9ab4a5c5d2b9203e9894 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 6 Jul 2008 21:29:47 +0000 Subject: [PATCH] Update the docs for the new location of FNV-1. [SVN r47146] --- doc/hash_equality.qbk | 4 ++-- doc/src_code/dictionary.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/hash_equality.qbk b/doc/hash_equality.qbk index ca69f61f..7ca4396f 100644 --- a/doc/hash_equality.qbk +++ b/doc/hash_equality.qbk @@ -23,8 +23,8 @@ but not the equality predicate. For example, if you wanted to use the [import src_code/dictionary.cpp] [case_sensitive_dictionary_fnv] -An example implementation of FNV-1, and some other hash functions are supplied -in the examples directory. +There is an [@../../libs/unordered/examples/fnv1.hpp implementation +of FNV-1] in the examples directory. If you wish to use a different equality function, you will also need to use a matching hash function. For diff --git a/doc/src_code/dictionary.cpp b/doc/src_code/dictionary.cpp index 721952a0..1f8ead92 100644 --- a/doc/src_code/dictionary.cpp +++ b/doc/src_code/dictionary.cpp @@ -6,7 +6,7 @@ #include #include #include -#include "../../examples/hash_functions/fnv-1.hpp" +#include "../../examples/fnv1.hpp" //[case_insensitive_functions struct iequal_to