Merge branch 'master' into fix-artifact

pull/4839/head
Kazuki Y 2022-12-28 22:07:07 +09:00 committed by GitHub
commit cd0bbe15af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,5 @@
# Open Asset Import Library (assimp)
# ----------------------------------------------------------------------
#
# Copyright (c) 2006-2022, assimp team
#
# All rights reserved.
@ -94,6 +93,7 @@ SET( PUBLIC_HEADERS
${HEADER_PATH}/vector3.inl
${HEADER_PATH}/version.h
${HEADER_PATH}/cimport.h
${HEADER_PATH}/AssertHandler.h
${HEADER_PATH}/importerdesc.h
${HEADER_PATH}/Importer.hpp
${HEADER_PATH}/DefaultLogger.hpp

View File

@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* @brief Implementation of assert handling logic.
*/
#include "AssertHandler.h"
#include <assimp/AssertHandler.h>
#include <iostream>
#include <cstdlib>

View File

@ -1175,7 +1175,7 @@ extern int ZEXPORT unzOpenCurrentFile3(unzFile file, int *method, int *level, in
pfile_in_zip_read_info->stream.zalloc = (alloc_func)0;
pfile_in_zip_read_info->stream.zfree = (free_func)0;
pfile_in_zip_read_info->stream.opaque = (voidpf)s;
pfile_in_zip_read_info->stream.next_in = 0;
pfile_in_zip_read_info->stream.next_in = (voidpf)0;
pfile_in_zip_read_info->stream.avail_in = 0;
#ifdef HAVE_APPLE_COMPRESSION
@ -1997,4 +1997,4 @@ extern int ZEXPORT unzEndOfFile(unzFile file)
#ifdef _MSC_VER
# pragma warning(pop)
#endif // _MSC_VER
#endif // _MSC_VER

View File

@ -47,7 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif
#include <assimp/ai_assert.h>
#include <code/Common/AssertHandler.h>
#include <assimp/AssertHandler.h>
namespace
{

View File

@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "UnitTestPCH.h"
#include "Common/BaseProcess.h"
#include "Common/AssertHandler.h"
#include <assimp/AssertHandler.h>
using namespace Assimp;