Use an array instead of std::set in hash_no_ext_fail_test, as that seems like a better test for older compilers.

[SVN r33194]
This commit is contained in:
Daniel James
2006-03-01 22:44:27 +00:00
parent 22a2c49db9
commit 60d6f2fabd

View File

@@ -12,10 +12,9 @@
#include <boost/functional/hash.hpp>
#include <boost/functional/hash.hpp>
#include <set>
int main()
{
HASH_NAMESPACE::hash< std::set<int> > hasher;
HASH_NAMESPACE::hash< int[10] > hasher;
return 0;
}