Changeset 61695 in vbox
- Timestamp:
- Jun 14, 2016 11:41:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/json.cpp
r61694 r61695 47 47 { 48 48 /** Line in the source. */ 49 unsignediLine;49 size_t iLine; 50 50 /** Current start character .*/ 51 unsignediChStart;51 size_t iChStart; 52 52 /** Current end character. */ 53 unsignediChEnd;53 size_t iChEnd; 54 54 } RTJSONPOS; 55 55 /** Pointer to a position. */ … … 533 533 else 534 534 { 535 pToken->enmClass = =RTJSONTOKENCLASS_INVALID;535 pToken->enmClass = RTJSONTOKENCLASS_INVALID; 536 536 rc = VERR_JSON_MALFORMED; 537 537 }
Note:
See TracChangeset
for help on using the changeset viewer.