Update IQMImporter.cpp

- Add missing namespace
- closes https://github.com/assimp/assimp/issues/4358
kimkulling-issue4358
Kim Kulling 2022-01-27 00:17:54 +01:00 committed by GitHub
parent a214b0833f
commit 2598b95c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ inline void swap_block( uint32_t *block, size_t size ){
(void)block; // suppress 'unreferenced formal parameter' MSVC warning
size >>= 2;
for ( size_t i = 0; i < size; ++i )
AI_SWAP4( block[ i ] );
Assimp::AI_SWAP4( block[ i ] );
}
static const aiImporterDesc desc = {