Index: Source/wtf/Vector.h |
diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h |
index 164847e215b04741950e23073187600fa2cad096..807a432214a21c3fb7bcb719fb6a1b6d76970241 100644 |
--- a/Source/wtf/Vector.h |
+++ b/Source/wtf/Vector.h |
@@ -29,8 +29,8 @@ |
#include "wtf/StdLibExtras.h" |
#include "wtf/UnusedParam.h" |
#include "wtf/VectorTraits.h" |
-#include <utility> |
#include <string.h> |
+#include <utility> |
namespace WTF { |
@@ -944,7 +944,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) |
{ |
ASSERT(size() < capacity()); |
const U* ptr = &val; |