Index: Source/wtf/HashIterators.h |
diff --git a/Source/wtf/HashIterators.h b/Source/wtf/HashIterators.h |
index ea7a468179a45193fbfa966cfd52d1793cf8b3ed..df37b2eefb89f2bbd9c5245f11a37dfd0fa76103 100644 |
--- a/Source/wtf/HashIterators.h |
+++ b/Source/wtf/HashIterators.h |
@@ -33,7 +33,7 @@ namespace WTF { |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableKeysIterator; |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableValuesIterator; |
- template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > { |
+ template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> { |
private: |
typedef KeyValuePair<KeyType, MappedType> ValueType; |
public: |
@@ -56,7 +56,7 @@ namespace WTF { |
typename HashTableType::const_iterator m_impl; |
}; |
- template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > { |
+ template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> { |
private: |
typedef KeyValuePair<KeyType, MappedType> ValueType; |
public: |
@@ -86,7 +86,7 @@ namespace WTF { |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstKeysIterator { |
private: |
- typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; |
+ typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> ConstIterator; |
public: |
HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(impl) {} |
@@ -103,7 +103,7 @@ namespace WTF { |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableConstValuesIterator { |
private: |
- typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; |
+ typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> ConstIterator; |
public: |
HashTableConstValuesIterator(const ConstIterator& impl) : m_impl(impl) {} |
@@ -120,8 +120,8 @@ namespace WTF { |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableKeysIterator { |
private: |
- typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator; |
- typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; |
+ typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> Iterator; |
+ typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> ConstIterator; |
public: |
HashTableKeysIterator(const Iterator& impl) : m_impl(impl) {} |
@@ -143,8 +143,8 @@ namespace WTF { |
template<typename HashTableType, typename KeyType, typename MappedType> struct HashTableValuesIterator { |
private: |
- typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > Iterator; |
- typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType> > ConstIterator; |
+ typedef HashTableIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> Iterator; |
+ typedef HashTableConstIteratorAdapter<HashTableType, KeyValuePair<KeyType, MappedType>> ConstIterator; |
public: |
HashTableValuesIterator(const Iterator& impl) : m_impl(impl) {} |