Index: Source/wtf/Vector.h |
diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h |
index f943223a07202988557ab0a028f1831972154279..ed58774fe7f2980cc6b536181da877dc8b28fb81 100644 |
--- a/Source/wtf/Vector.h |
+++ b/Source/wtf/Vector.h |
@@ -305,7 +305,7 @@ static const size_t kInitialVectorSize = WTF_VECTOR_INITIAL_SIZE; |
void clearUnusedSlots(T* from, T* to) |
{ |
- VectorUnusedSlotClearer<Allocator::isGarbageCollected && (VectorTraits<T>::needsDestruction || ShouldBeTraced<VectorTraits<T> >::value || VectorTraits<T>::isWeak), T>::clear(from, to); |
+ VectorUnusedSlotClearer<Allocator::isGarbageCollected && (VectorTraits<T>::needsDestruction || ShouldBeTraced<VectorTraits<T> >::value), T>::clear(from, to); |
} |
protected: |