- Timestamp:
- Oct 9, 2018 9:22:34 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r74594 r74708 1530 1530 * it in quotes with proper JSON escaping. 1531 1531 * 1532 * - \%RMpa - Takes a string pointer (const char *) and outputs 1533 * it percent-encoded (RFC-3986). All reserved characters 1534 * are encoded. 1535 * 1532 1536 * - \%RMpf - Takes a string pointer (const char *) and outputs 1533 1537 * it percent-encoded (RFC-3986), form style. This -
trunk/src/VBox/Runtime/common/string/strformatrt.cpp
r73914 r74708 1459 1459 1460 1460 *ppszFormat += 2; 1461 AssertMsgBreak(chVariant == ' p' || chVariant == 'q' || chVariant == 'f',1461 AssertMsgBreak(chVariant == 'a' || chVariant == 'p' || chVariant == 'q' || chVariant == 'f', 1462 1462 ("Invalid IPRT format type '%.10s'!\n", pszFormatOrg)); 1463 1463
Note:
See TracChangeset
for help on using the changeset viewer.