Changeset 16346 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 28, 2009 9:56:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/sanity.h
r13832 r16346 164 164 165 165 AssertCompileSize(void *, 8); 166 AssertCompileSize(intptr_t, 8); 167 AssertCompileSize(uintptr_t, 8); 168 AssertCompileSize(size_t, 8); 169 AssertCompileSize(ssize_t, 8); 166 170 167 171 #else 168 172 169 173 AssertCompileSize(void *, 4); 174 AssertCompileSize(intptr_t, 4); 175 AssertCompileSize(uintptr_t, 4); 176 AssertCompileSize(size_t, 4); 177 AssertCompileSize(ssize_t, 4); 170 178 171 179 #endif 180 181 182 /* 183 * Standard sized types. 184 */ 185 AssertCompileSize(uint8_t, 1); 186 AssertCompileSize(uint16_t, 2); 187 AssertCompileSize(uint32_t, 4); 188 AssertCompileSize(uint64_t, 8); 189
Note:
See TracChangeset
for help on using the changeset viewer.