From 06d2fbdae640487fad362112b214db526df9eb51 Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Sun, 17 Nov 2019 02:11:59 +0900 Subject: [PATCH] `not` is alternative keyword and not recommended to use. Fixes #225 --- tiny_gltf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny_gltf.h b/tiny_gltf.h index cc09e77..d866984 100644 --- a/tiny_gltf.h +++ b/tiny_gltf.h @@ -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);