From e295541daeb722870fe67183eb2246dc8ef48f13 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 20 Aug 2011 23:34:59 +0000 Subject: [PATCH] Unordered: Try to make VC++ 8 happy. [SVN r73973] --- include/boost/unordered/detail/allocator_helpers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/allocator_helpers.hpp b/include/boost/unordered/detail/allocator_helpers.hpp index 295e9f61..79f40467 100644 --- a/include/boost/unordered/detail/allocator_helpers.hpp +++ b/include/boost/unordered/detail/allocator_helpers.hpp @@ -101,7 +101,7 @@ namespace boost { namespace unordered { namespace detail { static BOOST_DEDUCED_TYPENAME sfinae< \ BOOST_DEDUCED_TYPENAME T::tname>::type test(int); \ template \ - static no_type test(...); \ + static no_type test(long); \ \ enum { value = sizeof(test(0)) == sizeof(yes_type) }; \ \