not is alternative keyword and not recommended to use. Fixes #225

This commit is contained in:
Syoyo Fujita 2019-11-17 02:11:59 +09:00
parent d5ff5cbfb1
commit 06d2fbdae6

View File

@ -5247,7 +5247,7 @@ bool TinyGLTF::LoadFromString(Model *model, std::string *err, std::string *warn,
#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || \
defined(_CPPUNWIND)) && \
not defined(TINYGLTF_NOEXCEPTION)
!defined(TINYGLTF_NOEXCEPTION)
try {
JsonParse(v, json_str, json_str_length, true);