Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- /** @file assert.h
- */
- #ifndef AI_DEBUG_H_INC
- #define AI_DEBUG_H_INC
-
- #ifdef ASSIMP_BUILD_DEBUG
- # include <assert.h>
- # define ai_assert(expression) assert(expression)
- #else
- # define ai_assert(expression)
- #endif
-
-
- #endif
|