Changeset 105848 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Aug 23, 2024 4:05:23 PM (8 months ago)
- svn:sync-xref-src-repo-rev:
- 164567
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/script/scriptlex.cpp
r105760 r105848 913 913 { 914 914 /* Some hex prefix? */ 915 if (RTScriptLexPeekCh(hScriptLex, 1) == 'x') 915 char chNext = RTScriptLexPeekCh(hScriptLex, 1); 916 if (chNext == 'x') 916 917 { 917 918 uBase = 16; 918 919 RTScriptLexConsumeCh(hScriptLex); 919 920 } 920 else /* Octal stuff. */921 else if (chNext >= '0' && chNext <= '9') /* Octal stuff. */ 921 922 AssertFailedReturn(VERR_NOT_IMPLEMENTED); 922 923
Note:
See TracChangeset
for help on using the changeset viewer.