Index: third_party/WebKit/Source/wtf/HashSetTest.cpp |
diff --git a/third_party/WebKit/Source/wtf/HashSetTest.cpp b/third_party/WebKit/Source/wtf/HashSetTest.cpp |
index 87db991bef9d5fc9826f08189e15935ff25e6f82..d042f267f4ba53860d886ca640fc429128512226 100644 |
--- a/third_party/WebKit/Source/wtf/HashSetTest.cpp |
+++ b/third_party/WebKit/Source/wtf/HashSetTest.cpp |
@@ -230,10 +230,10 @@ struct CountCopyHashTraits : public GenericHashTraits<CountCopy> { |
}; |
struct CountCopyHash : public PtrHash<const int*> { |
- static unsigned hash(const CountCopy& value) { return PtrHash<const int*>::hash(value.counter()); } |
+ static unsigned hash(const CountCopy& value) { return PtrHash<const int>::hash(value.counter()); } |
static bool equal(const CountCopy& left, const CountCopy& right) |
{ |
- return PtrHash<const int*>::equal(left.counter(), right.counter()); |
+ return PtrHash<const int>::equal(left.counter(), right.counter()); |
} |
static const bool safeToCompareToEmptyOrDeleted = true; |
}; |