From 4c3417468bfded3fb9cffc71555aafa6794b2bf2 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 9 Nov 2005 21:15:19 +0000 Subject: [PATCH] Fix a constructor for Visual C++ 6. [SVN r2738] --- include/boost/unordered/detail/hash_table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/hash_table.hpp b/include/boost/unordered/detail/hash_table.hpp index 9638e15e..65d6eac7 100644 --- a/include/boost/unordered/detail/hash_table.hpp +++ b/include/boost/unordered/detail/hash_table.hpp @@ -944,7 +944,7 @@ namespace boost { template hash_table(I i, I j, size_type n, hasher const& hf, key_equal const& eq, - node_allocator const& a) + value_allocator const& a) : data(initial_size(i, j, n), a), // throws, cleans itself up func1_(hf, eq), // throws " " func2_(hf, eq), // throws " "