add missing switch case for binary

with warnings cranked up and warnings-as-errors enabled, the compiler throws an error due to this switch missing a case for binary.  this makes the ignore explicit in order for compilation to proceed.
This commit is contained in:
Christopher Sean Morrison 2022-02-23 10:02:49 -05:00 committed by GitHub
parent 17e6e310ce
commit 0bfcb4f49e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3192,6 +3192,7 @@ static bool ParseJsonAsValue(Value *ret, const json &o) {
break;
case json::value_t::null:
case json::value_t::discarded:
case json::value_t::binary:
// default:
break;
}