Changeset 63232 in vbox for trunk/include
- Timestamp:
- Aug 9, 2016 7:36:24 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r62636 r63232 880 880 881 881 /** @todo Fix this! */ 882 RT_GCC_NO_WARN_CONVERSION_BEGIN 883 m.size = aNewSize; 884 RT_GCC_NO_WARN_CONVERSION_END 882 m.size = (PRUint32)aNewSize; 885 883 #else 886 884 /* nothing to do here, SafeArrayCreate() has performed element … … 1150 1148 1151 1149 /** @todo Fix this! */ 1152 RT_GCC_NO_WARN_CONVERSION_BEGIN 1153 m.size = aNewSize; 1154 RT_GCC_NO_WARN_CONVERSION_END 1150 m.size = (PRUint32)aNewSize; 1155 1151 } 1156 1152 … … 1172 1168 1173 1169 /** @todo Fix this! */ 1174 RT_GCC_NO_WARN_CONVERSION_BEGIN 1175 m.size = aNewSize; 1176 RT_GCC_NO_WARN_CONVERSION_END 1170 m.size = (PRUint32)aNewSize; 1177 1171 } 1178 1172 } 1179 1173 1180 1174 /** @todo Fix this! */ 1181 RT_GCC_NO_WARN_CONVERSION_BEGIN 1182 m.capacity = newCapacity; 1183 RT_GCC_NO_WARN_CONVERSION_END 1175 m.capacity = (PRUint32)newCapacity; 1184 1176 1185 1177 #else
Note:
See TracChangeset
for help on using the changeset viewer.