mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Compil fix
This commit is contained in:
parent
b1a37f6bd0
commit
615174f445
1 changed files with 2 additions and 2 deletions
|
|
@ -65,10 +65,10 @@ LINPHONE_BEGIN_NAMESPACE
|
|||
|
||||
void l_assert (const char *condition, const char *file, int line);
|
||||
|
||||
#ifdef DEBUG
|
||||
#ifndef DEBUG
|
||||
#define L_ASSERT(CONDITION) static_cast<void>(false && (CONDITION))
|
||||
#else
|
||||
#define L_ASSERT(CONDITION) ((CONDITION) ? static_cast<void>(0) : l_assert(#CONDITION, __FILE__, __LINE__))
|
||||
#define L_ASSERT(CONDITION) ((CONDITION) ? static_cast<void>(0) : LINPHONE_NAMESPACE::l_assert(#CONDITION, __FILE__, __LINE__))
|
||||
#endif
|
||||
|
||||
// Allows access to private internal data.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue