feat(json_family): Add support of the JSON legacy mode (#3284)

This commit is contained in:
Stepan Bagritsevich 2024-08-06 18:04:45 +02:00 committed by GitHub
parent 7df72fd6d0
commit 75452a7108
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 1733 additions and 1012 deletions

View file

@ -44,17 +44,6 @@ using facade::kWrongTypeErr;
#endif // RETURN_ON_BAD_STATUS
#ifndef RETURN_UNEXPECTED
#define RETURN_UNEXPECTED(x) \
do { \
if (!(x)) { \
return (x).get_unexpected(); \
} \
} while (0)
#endif // RETURN_UNEXPECTED
#ifndef GET_OR_SEND_UNEXPECTED
#define GET_OR_SEND_UNEXPECTED(expr) \