Changeset 45068 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Jun 24, 2009, 12:40:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Vector.h
r43205 r45068 22 22 #define WTF_Vector_h 23 23 24 #include "Assertions.h" 25 #include "FastMalloc.h" 24 #include "FastAllocBase.h" 26 25 #include "Noncopyable.h" 27 26 #include "NotFound.h" 28 27 #include "VectorTraits.h" 29 28 #include <limits> 30 #include <stdlib.h>31 #include <string.h>32 29 #include <utility> 33 30 … … 434 431 435 432 template<typename T, size_t inlineCapacity = 0> 436 class Vector {433 class Vector : public FastAllocBase { 437 434 private: 438 435 typedef VectorBuffer<T, inlineCapacity> Buffer;
Note:
See TracChangeset
for help on using the changeset viewer.