Index: Source/wtf/HashCountedSet.h |
diff --git a/Source/wtf/HashCountedSet.h b/Source/wtf/HashCountedSet.h |
index 79b3fefadc90a2d25c96961989b65a7dd3d5964e..19fd314ce66c673fc8826cb3f62b0a9425085595 100644 |
--- a/Source/wtf/HashCountedSet.h |
+++ b/Source/wtf/HashCountedSet.h |
@@ -87,7 +87,7 @@ namespace WTF { |
}; |
template<typename T, typename U, typename V, typename W> |
- inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value) |
+ typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value) |
{ |
AddResult result = m_impl.add(value, 0); |
++result.storedValue->value; |
@@ -95,7 +95,7 @@ namespace WTF { |
} |
template<typename T, typename U, typename V, typename W> |
- inline bool HashCountedSet<T, U, V, W>::remove(iterator it) |
+ bool HashCountedSet<T, U, V, W>::remove(iterator it) |
{ |
if (it == end()) |
return false; |
@@ -113,7 +113,7 @@ namespace WTF { |
} |
template<typename T, typename U, typename V, typename W> |
- inline void HashCountedSet<T, U, V, W>::removeAll(iterator it) |
+ void HashCountedSet<T, U, V, W>::removeAll(iterator it) |
{ |
if (it == end()) |
return; |
@@ -122,7 +122,7 @@ namespace WTF { |
} |
template<typename T, typename U, typename V, typename W, typename VectorType> |
- inline void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector) |
+ void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector) |
{ |
typedef typename HashCountedSet<T, U, V, W>::const_iterator iterator; |
@@ -135,7 +135,7 @@ namespace WTF { |
} |
template<typename Value, typename HashFunctions, typename Traits, typename Allocator, size_t inlineCapacity, typename VectorAllocator> |
- inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector) |
+ void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector) |
{ |
typedef typename HashCountedSet<Value, HashFunctions, Traits, Allocator>::const_iterator iterator; |