vrshoot

view libs/assimp/assimp/ai_assert.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 /** @file assert.h
2 */
3 #ifndef AI_DEBUG_H_INC
4 #define AI_DEBUG_H_INC
6 #ifdef _DEBUG
7 # include <assert.h>
8 # define ai_assert(expression) assert(expression)
9 #else
10 # define ai_assert(expression)
11 #endif
14 #endif