Fix msvc build -- STRICT is a msvc macro name

This commit is contained in:
Nyall Dawson 2023-09-03 09:05:32 +10:00
parent 5a7b8278cd
commit bbc1eaeecf

View File

@ -196,8 +196,8 @@ typedef enum {
} Type; } Type;
typedef enum { typedef enum {
PERMISSIVE, Permissive,
STRICT Strict
} ParseStrictness; } ParseStrictness;
static inline int32_t GetComponentSizeInBytes(uint32_t componentType) { static inline int32_t GetComponentSizeInBytes(uint32_t componentType) {
@ -1562,7 +1562,7 @@ class TinyGLTF {
size_t bin_size_ = 0; size_t bin_size_ = 0;
bool is_binary_ = false; bool is_binary_ = false;
ParseStrictness strictness_ = ParseStrictness::STRICT; ParseStrictness strictness_ = ParseStrictness::Strict;
bool serialize_default_values_ = false; ///< Serialize default values? bool serialize_default_values_ = false; ///< Serialize default values?
@ -5254,7 +5254,7 @@ static bool ParseMaterial(Material *material, std::string *err, std::string *war
if (ParseNumberArrayProperty(&material->emissiveFactor, err, o, if (ParseNumberArrayProperty(&material->emissiveFactor, err, o,
"emissiveFactor", "emissiveFactor",
/* required */ false)) { /* required */ false)) {
if (strictness==ParseStrictness::PERMISSIVE && material->emissiveFactor.size() == 4) { if (strictness==ParseStrictness::Permissive && material->emissiveFactor.size() == 4) {
if (warn) { if (warn) {
(*warn) += (*warn) +=
"Array length of `emissiveFactor` parameter in " "Array length of `emissiveFactor` parameter in "