Changeset 36972 in webkit for trunk/JavaScriptCore/VM/Instruction.h
- Timestamp:
- Sep 26, 2008, 3:40:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Instruction.h
r36640 r36972 31 31 32 32 #include "Opcode.h" 33 #include <wtf/VectorTraits.h> 33 34 34 35 namespace JSC { … … 42 43 Instruction(int operand) 43 44 { 44 // We have to initiali se one of the pointer members to ensure that45 // We have to initialize one of the pointer members to ensure that 45 46 // the entire struct is initialised in 64-bit. 46 47 u.jsCell = 0; … … 63 64 } // namespace JSC 64 65 66 namespace WTF { 67 68 template<> struct VectorTraits<JSC::Instruction> : VectorTraitsBase<true, JSC::Instruction> { }; 69 70 } // namespace WTF 71 65 72 #endif // Instruction_h
Note:
See TracChangeset
for help on using the changeset viewer.