You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
222 B

  1. /** @file assert.h
  2. */
  3. #ifndef AI_DEBUG_H_INC
  4. #define AI_DEBUG_H_INC
  5. #ifdef ASSIMP_BUILD_DEBUG
  6. # include <assert.h>
  7. # define ai_assert(expression) assert(expression)
  8. #else
  9. # define ai_assert(expression)
  10. #endif
  11. #endif