mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-06-08 11:13:50 +00:00
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:
committed by
GitHub
parent
17e6e310ce
commit
0bfcb4f49e
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user