Merged revision(s) 78115-78594 from trunk/libs/intrusive:

[SVN r78598]
This commit is contained in:
Ion Gaztañaga
2012-05-24 18:12:03 +00:00
parent 03a51534b2
commit 12c6c3a66a
55 changed files with 385 additions and 385 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ using namespace boost::intrusive;
struct StrHasher
{
std::size_t operator()(const char *str) const
{
{
std::size_t seed = 0;
for(; *str; ++str) boost::hash_combine(seed, *str);
return seed;
@@ -31,7 +31,7 @@ class Expensive : public set_base_hook<>, public unordered_set_base_hook<>
{
std::string key_;
// Other members...
public:
Expensive(const char *key)
: key_(key)