Changeset 7071 in vbox for trunk/include/VBox
- Timestamp:
- Feb 21, 2008 1:48:04 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28311
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r6921 r7071 508 508 #else 509 509 510 SAFEARRAYBOUND bound = { aNewSize, 0 };510 SAFEARRAYBOUND bound = { (ULONG)aNewSize, 0 }; 511 511 m.arr = SafeArrayCreate (VarType(), 1, &bound); 512 512 AssertReturn (m.arr != NULL, false); … … 1001 1001 #else 1002 1002 1003 SAFEARRAYBOUND bound = { aNewSize, 0 };1003 SAFEARRAYBOUND bound = { (ULONG)aNewSize, 0 }; 1004 1004 m.arr = SafeArrayCreateEx (VT_UNKNOWN, 1, &bound, 1005 1005 (PVOID) &_ATL_IIDOF (I));
Note:
See TracChangeset
for help on using the changeset viewer.