Update: Small code cleanup

pull/5004/head
Kim Kulling 2023-03-10 08:49:58 +01:00 committed by GitHub
parent 63dae0a7f2
commit 2f7882cb8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,6 @@ Open Asset Import Library (assimp)
Copyright (c) 2006-2022, assimp team Copyright (c) 2006-2022, assimp team
All rights reserved. All rights reserved.
Redistribution and use of this software in source and binary forms, Redistribution and use of this software in source and binary forms,
@ -52,7 +50,7 @@ Assimp C export interface. See Exporter.cpp for some notes.
#include <assimp/SceneCombiner.h> #include <assimp/SceneCombiner.h>
#include <assimp/Exporter.hpp> #include <assimp/Exporter.hpp>
using namespace Assimp; namespace Assimp {
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
ASSIMP_API size_t aiGetExportFormatCount(void) { ASSIMP_API size_t aiGetExportFormatCount(void) {
@ -141,4 +139,6 @@ ASSIMP_API C_STRUCT void aiReleaseExportBlob(const aiExportDataBlob *pData) {
delete pData; delete pData;
} }
} // namespace Assimp
#endif // !ASSIMP_BUILD_NO_EXPORT #endif // !ASSIMP_BUILD_NO_EXPORT