From f45aeca3f670b40da8f48598ea479f20e41f7eaf Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 22 Nov 2016 21:17:47 +0100 Subject: [PATCH] Fix build: use ai_assert instead of assert. --- code/Assimp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Assimp.cpp b/code/Assimp.cpp index c28da95ee..092c40979 100644 --- a/code/Assimp.cpp +++ b/code/Assimp.cpp @@ -150,7 +150,7 @@ void ReportSceneNotFoundError() DefaultLogger::get()->error("Unable to find the Assimp::Importer for this aiScene. " "The C-API does not accept scenes produced by the C++ API and vice versa"); - assert(false); + ai_assert(false); } // ------------------------------------------------------------------------------------------------