From 697c7f95dd02af02c1f1b4c7554c34fa9d15a6bd Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 6 Jun 2009 13:53:19 +0000 Subject: [PATCH] Minor hash test changes. Merged revisions 53522-53523 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r53522 | danieljames | 2009-06-01 07:49:45 +0100 (Mon, 01 Jun 2009) | 1 line Test the hash functions for a couple of typedefs. ........ r53523 | danieljames | 2009-06-01 07:50:14 +0100 (Mon, 01 Jun 2009) | 2 lines Recent versions of borland haven't fixed some of their namespace bugs, so mark up their hash failures for all versions. ........ [SVN r53686] --- hash/test/hash_number_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hash/test/hash_number_test.cpp b/hash/test/hash_number_test.cpp index 88e03bd..40febc7 100644 --- a/hash/test/hash_number_test.cpp +++ b/hash/test/hash_number_test.cpp @@ -157,6 +157,9 @@ int main() NUMERIC_TEST(float, float) NUMERIC_TEST(double, double) + NUMERIC_TEST(std::size_t, size_t) + NUMERIC_TEST(std::ptrdiff_t, ptrdiff_t) + bool_test(); return boost::report_errors();