Merge pull request #342 from brlcad/patch-1

add missing switch case for binary
This commit is contained in:
Syoyo Fujita 2022-02-24 03:34:58 +09:00 committed by GitHub
commit 4749b0989d
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;
}