Changeset 14045 in vbox for trunk/include/VBox
- Timestamp:
- Nov 10, 2008 9:57:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r14043 r14045 401 401 if (sizeof (T) % 4 == 0) return (ULONG) ((sizeof (T) / 4) * aSize); 402 402 if (sizeof (T) % 2 == 0) return (ULONG) ((sizeof (T) / 2) * aSize); 403 return (ULONG) sizeof (T) * aSize;403 return (ULONG) (sizeof (T) * aSize); 404 404 } 405 405
Note:
See TracChangeset
for help on using the changeset viewer.