| Index: Source/wtf/HashSet.h
|
| diff --git a/Source/wtf/HashSet.h b/Source/wtf/HashSet.h
|
| index 55a6e5d88a0f42a9199b084ff433b523bf3a8f75..b1fea0aeab005ed23be237a00b8b2ce278f393d4 100644
|
| --- a/Source/wtf/HashSet.h
|
| +++ b/Source/wtf/HashSet.h
|
| @@ -176,14 +176,14 @@ namespace WTF {
|
| typename HashSet<Value, HashFunctions, Traits, Allocator>::iterator
|
| inline HashSet<Value, HashFunctions, Traits, Allocator>::find(const T& value) const
|
| {
|
| - return m_impl.template find<HashSetTranslatorAdapter<HashTranslator> >(value);
|
| + return m_impl.template find<HashSetTranslatorAdapter<HashTranslator>>(value);
|
| }
|
|
|
| template<typename Value, typename HashFunctions, typename Traits, typename Allocator>
|
| template<typename HashTranslator, typename T>
|
| inline bool HashSet<Value, HashFunctions, Traits, Allocator>::contains(const T& value) const
|
| {
|
| - return m_impl.template contains<HashSetTranslatorAdapter<HashTranslator> >(value);
|
| + return m_impl.template contains<HashSetTranslatorAdapter<HashTranslator>>(value);
|
| }
|
|
|
| template<typename T, typename U, typename V, typename W>
|
| @@ -197,7 +197,7 @@ namespace WTF {
|
| inline typename HashSet<Value, HashFunctions, Traits, Allocator>::AddResult
|
| HashSet<Value, HashFunctions, Traits, Allocator>::add(const T& value)
|
| {
|
| - return m_impl.template addPassingHashCode<HashSetTranslatorAdapter<HashTranslator> >(value, value);
|
| + return m_impl.template addPassingHashCode<HashSetTranslatorAdapter<HashTranslator>>(value, value);
|
| }
|
|
|
| template<typename T, typename U, typename V, typename W>
|
| @@ -274,7 +274,7 @@ namespace WTF {
|
|
|
| #if !ENABLE(OILPAN)
|
| template<typename T, typename U, typename V>
|
| - struct NeedsTracing<HashSet<T, U, V> > {
|
| + struct NeedsTracing<HashSet<T, U, V>> {
|
| static const bool value = false;
|
| };
|
| #endif
|
|
|