| Index: Source/wtf/HashTraits.h
|
| diff --git a/Source/wtf/HashTraits.h b/Source/wtf/HashTraits.h
|
| index 1537bb1a0bbbd031fa45e642704fa7db1fac677c..fb387c783609732a945fdd084d5258ed9d37ca58 100644
|
| --- a/Source/wtf/HashTraits.h
|
| +++ b/Source/wtf/HashTraits.h
|
| @@ -190,7 +190,7 @@ namespace WTF {
|
|
|
| static const bool needsDestruction = FirstTraits::needsDestruction || SecondTraits::needsDestruction;
|
|
|
| - static const int minimumTableSize = FirstTraits::minimumTableSize;
|
| + static const unsigned minimumTableSize = FirstTraits::minimumTableSize;
|
|
|
| static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); }
|
| static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
|
| @@ -236,7 +236,7 @@ namespace WTF {
|
|
|
| static const bool needsDestruction = KeyTraits::needsDestruction || ValueTraits::needsDestruction;
|
|
|
| - static const int minimumTableSize = KeyTraits::minimumTableSize;
|
| + static const unsigned minimumTableSize = KeyTraits::minimumTableSize;
|
|
|
| static void constructDeletedValue(TraitType& slot) { KeyTraits::constructDeletedValue(slot.key); }
|
| static bool isDeletedValue(const TraitType& value) { return KeyTraits::isDeletedValue(value.key); }
|
|
|