Changeset 14045
- Timestamp:
- 11/10/08 22:57:01 (2 months ago)
- Files:
-
- trunk/include/VBox/com/array.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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

