mirror of
https://github.com/boostorg/container.git
synced 2025-07-31 04:57:16 +02:00
Use boost::hash instead of boost::hash_value (properly tests #290 use case)
This commit is contained in:
@ -281,9 +281,11 @@ void hash_test()
|
|||||||
|
|
||||||
const boost::container::string s1 = "0125925123";
|
const boost::container::string s1 = "0125925123";
|
||||||
const boost::container::string s2 = "25925123";
|
const boost::container::string s2 = "25925123";
|
||||||
|
typedef boost::hash<boost::container::string> shash_t;
|
||||||
|
typedef boost::hash<StringViewType> svhash_t;
|
||||||
|
|
||||||
BOOST_TEST(boost::hash_value(s1) == boost::hash_value(StringViewType(s1)));
|
BOOST_TEST(shash_t()(s1) == svhash_t()(StringViewType(s1)));
|
||||||
BOOST_TEST(boost::hash_value(s2) == boost::hash_value(StringViewType(s2)));
|
BOOST_TEST(shash_t()(s2) == svhash_t()(StringViewType(s2)));
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user