mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 12:21:23 +00:00
moved function to namespace (#8068)
This commit is contained in:
@@ -2118,7 +2118,7 @@ CheckedError Parser::ParseSingleValue(const std::string *name, Value &e,
|
||||
auto match = false;
|
||||
|
||||
#define IF_ECHECK_(force, dtoken, check, req) \
|
||||
if (!match && ((dtoken) == token_) && ((check) || IsConstTrue(force))) \
|
||||
if (!match && ((dtoken) == token_) && ((check) || flatbuffers::IsConstTrue(force))) \
|
||||
ECHECK(TryTypedValue(name, dtoken, check, e, req, &match))
|
||||
#define TRY_ECHECK(dtoken, check, req) IF_ECHECK_(false, dtoken, check, req)
|
||||
#define FORCE_ECHECK(dtoken, check, req) IF_ECHECK_(true, dtoken, check, req)
|
||||
|
||||
Reference in New Issue
Block a user