Chromium Code Reviews| Index: Source/wtf/Vector.h |
| diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h |
| index a49fb68864c175df5ee972dd0b8fdea8f42aedf8..f4119210e01745a5ea1e03d2046b23f8ccb783e1 100644 |
| --- a/Source/wtf/Vector.h |
| +++ b/Source/wtf/Vector.h |
| @@ -928,7 +928,7 @@ static const size_t kInitialVectorSize = WTF_VECTOR_INITIAL_SIZE; |
| // vector's capacity is large enough for the append to succeed. |
| template<typename T, size_t inlineCapacity> template<typename U> |
| - inline void Vector<T, inlineCapacity>::uncheckedAppend(const U& val) |
| + ALWAYS_INLINE void Vector<T, inlineCapacity>::uncheckedAppend(const U& val) |
|
esprehn
2013/09/10 03:11:40
What does this do to the binary size?
|
| { |
| ASSERT(size() < capacity()); |
| const U* ptr = &val; |