summaryrefslogtreecommitdiffstats
path: root/3rdparty/assimp/include/aiAssert.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/assimp/include/aiAssert.h')
-rw-r--r--3rdparty/assimp/include/aiAssert.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/3rdparty/assimp/include/aiAssert.h b/3rdparty/assimp/include/aiAssert.h
deleted file mode 100644
index 5e00d846..00000000
--- a/3rdparty/assimp/include/aiAssert.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/** @file aiAssert.h
- */
-#ifndef AI_DEBUG_H_INC
-#define AI_DEBUG_H_INC
-
-#include <string>
-
-#ifndef __cplusplus
-#error This header requires C++ to be used.
-#endif
-
-namespace Assimp {
-
-//! \brief ASSIMP specific assertion test, only works in debug mode
-//! \param uiLine Line in file
-//! \param file Source file
-AI_WONT_RETURN void aiAssert(const std::string &message, unsigned int uiLine, const std::string &file);
-
-
-//! \def ai_assert
-//! \brief ASSIMP specific assertion test
-#ifdef DEBUG
-# define ai_assert(expression) if ( !(expression)) Assimp::aiAssert( #expression, __LINE__, __FILE__);
-#else
-# define ai_assert(expression)
-#endif
-
-} // Namespace Assimp
-
-#endif