Changeset 74024 in vbox
- Timestamp:
- Sep 2, 2018 1:51:50 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124771
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r74023 r74024 1183 1183 1184 1184 /* Map class must be friend so it can use the MapEntry constructor. */ 1185 friend RTCRestStringMapBase;1185 friend class RTCRestStringMapBase; 1186 1186 }; 1187 1187 -
trunk/src/VBox/Runtime/common/rest/RTCRestClientRequestBase.cpp
r74023 r74024 152 152 VERR_REST_INTERAL_ERROR_2); 153 153 RTCRestArrayBase const *pArray = (RTCRestArrayBase const *)a_papQueryParamObjs[i]; 154 for (size_t i = 0; i < pArray->size(); i++)154 for (size_t j = 0; j < pArray->size(); j++) 155 155 { 156 RTCRestObjectBase const *pObj = pArray->atBase( i);156 RTCRestObjectBase const *pObj = pArray->atBase(j); 157 157 int rc = pObj->toString(&strTmpVal, a_paQueryParams[i].fFlags & ~RTCRestObjectBase::kCollectionFormat_Mask); 158 158 AssertRCReturn(rc, rc);
Note:
See TracChangeset
for help on using the changeset viewer.