- Timestamp:
- Aug 26, 2018 5:33:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp
r73895 r73898 59 59 { 60 60 Assert(fFlags == 0); 61 61 RT_NOREF(fFlags); 62 62 /* 63 63 * Just wrap the JSON serialization method. … … 159 159 { 160 160 Assert(!fFlags); 161 161 RT_NOREF(fFlags); 162 162 /* Be a little careful here to avoid throwing anything. */ 163 163 int rc = a_pDst->reserveNoThrow(m_fValue ? sizeof("true") : sizeof("false")); … … 257 257 { 258 258 Assert(!fFlags); 259 259 RT_NOREF(fFlags); 260 260 /* Be a little careful here to avoid throwing anything. */ 261 261 char szValue[64]; … … 359 359 { 360 360 Assert(!fFlags); 361 361 RT_NOREF(fFlags); 362 362 /* Be a little careful here to avoid throwing anything. */ 363 363 char szValue[16]; … … 461 461 { 462 462 Assert(!fFlags); 463 463 RT_NOREF(fFlags); 464 464 /* Be a little careful here to avoid throwing anything. */ 465 465 char szValue[8]; … … 543 543 { 544 544 Assert(!fFlags); 545 545 RT_NOREF(fFlags); 546 546 /* Just a simple approximation here. */ 547 547 /** @todo implement floating point values for json. */ … … 650 650 { 651 651 Assert(!fFlags); 652 652 RT_NOREF(fFlags); 653 653 /* Careful as always. */ 654 654 if (m_cch)
Note:
See TracChangeset
for help on using the changeset viewer.