Changeset 73965 in vbox
- Timestamp:
- Aug 29, 2018 5:19:20 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124697
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73964 r73965 653 653 * @param a_fThrow Whether to throw error. 654 654 */ 655 int copyArrayWorker(RTCRestArrayBase const &a_rThat, bool fThrow);655 int copyArrayWorker(RTCRestArrayBase const &a_rThat, bool a_fThrow); 656 656 657 657 /** … … 1021 1021 * @param a_fThrow Whether to throw error. 1022 1022 */ 1023 int copyMapWorker(RTCRestStringMapBase const &a_rThat, bool fThrow);1023 int copyMapWorker(RTCRestStringMapBase const &a_rThat, bool a_fThrow); 1024 1024 1025 1025 /** -
trunk/src/VBox/Runtime/common/rest/RTCRestArrayBase.cpp
r73960 r73965 278 278 279 279 280 int RTCRestArrayBase::copyArrayWorker(RTCRestArrayBase const &a_rThat, bool fThrow)280 int RTCRestArrayBase::copyArrayWorker(RTCRestArrayBase const &a_rThat, bool a_fThrow) 281 281 { 282 282 int rc; … … 294 294 if (RT_SUCCESS(rc)) 295 295 { /* likely */ } 296 else if ( fThrow)296 else if (a_fThrow) 297 297 throw std::bad_alloc(); 298 298 else -
trunk/src/VBox/Runtime/common/rest/RTCRestStringMapBase.cpp
r73956 r73965 256 256 *********************************************************************************************************************************/ 257 257 258 int RTCRestStringMapBase::copyMapWorker(RTCRestStringMapBase const &a_rThat, bool fThrow)258 int RTCRestStringMapBase::copyMapWorker(RTCRestStringMapBase const &a_rThat, bool a_fThrow) 259 259 { 260 260 Assert(this != &a_rThat); … … 267 267 if (RT_SUCCESS(rc)) 268 268 { /* likely */ } 269 else if ( fThrow)269 else if (a_fThrow) 270 270 throw std::bad_alloc(); 271 271 else
Note:
See TracChangeset
for help on using the changeset viewer.