Changeset 62361 in vbox for trunk/include/VBox/com
- Timestamp:
- Jul 20, 2016 3:27:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r62160 r62361 195 195 */ 196 196 #define ComSafeArrayAsInParam(aArray) \ 197 ( aArray).size(), (aArray).__asInParam_Arr((aArray).raw())197 (PRUint32)(aArray).size(), (aArray).__asInParam_Arr((aArray).raw()) 198 198 199 199 /** … … 879 879 } 880 880 881 /** @todo Fix this! */ 882 RT_GCC_NO_WARN_CONVERSION_BEGIN 881 883 m.size = aNewSize; 884 RT_GCC_NO_WARN_CONVERSION_END 882 885 #else 883 886 /* nothing to do here, SafeArrayCreate() has performed element … … 1146 1149 SafeArray::Uninit(m.arr[i]); 1147 1150 1151 /** @todo Fix this! */ 1152 RT_GCC_NO_WARN_CONVERSION_BEGIN 1148 1153 m.size = aNewSize; 1154 RT_GCC_NO_WARN_CONVERSION_END 1149 1155 } 1150 1156 … … 1165 1171 SafeArray::Uninit(m.arr[i]); 1166 1172 1173 /** @todo Fix this! */ 1174 RT_GCC_NO_WARN_CONVERSION_BEGIN 1167 1175 m.size = aNewSize; 1176 RT_GCC_NO_WARN_CONVERSION_END 1168 1177 } 1169 1178 } 1170 1179 1180 /** @todo Fix this! */ 1181 RT_GCC_NO_WARN_CONVERSION_BEGIN 1171 1182 m.capacity = newCapacity; 1183 RT_GCC_NO_WARN_CONVERSION_END 1172 1184 1173 1185 #else
Note:
See TracChangeset
for help on using the changeset viewer.