/usr/include/assimp/aiAssert.h is in libassimp-dev 2.0.863+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /** @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
|