Changeset 6521 for branches/stable_5.0/PROBE/probe_tree.hxx
- Timestamp:
- 16/03/10 12:59:52 (2 years ago)
- Files:
-
- 1 modified
-
branches/stable_5.0/PROBE/probe_tree.hxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/stable_5.0/PROBE/probe_tree.hxx
r5919 r6521 4 4 #include <bits/wordsize.h> 5 5 #endif // DARWIN 6 7 #ifndef STATIC_ASSERT_H 8 #include <static_assert.h> 9 #endif 6 10 7 11 #define PTM_magic 0xf4 … … 226 230 #ifdef ARB_64 227 231 232 COMPILE_ASSERT(sizeof(void*) == sizeof(unsigned long)); 233 228 234 # define PT_READ_PNTR(ptr,my_int_i) \ 229 235 do { \ … … 240 246 #else 241 247 /* not ARB_64 */ 248 249 COMPILE_ASSERT(sizeof(void*) == sizeof(unsigned int)); 242 250 243 251 # define PT_READ_PNTR(ptr,my_int_i) PT_READ_INT(ptr, my_int_i)
