Fix: Fix compilation for clang 14.0.3

- closes https://github.com/assimp/assimp/issues/5203
pull/5223/head
Kim Kulling 2023-09-10 20:23:25 +02:00 committed by GitHub
parent aa1996e143
commit a21268330a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -987,7 +987,7 @@ struct aiMesh {
if (mTextureCoordsNames == nullptr) {
// Construct and null-init array
mTextureCoordsNames = new aiString *[AI_MAX_NUMBER_OF_TEXTURECOORDS] {};
mTextureCoordsNames = new aiString *[AI_MAX_NUMBER_OF_TEXTURECOORDS];
}
if (texCoordsName.length == 0) {