Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
615174f4
Commit
615174f4
authored
Sep 13, 2017
by
Sylvain Berfini
🐮
Browse files
Compil fix
parent
b1a37f6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/linphone/utils/general.h
View file @
615174f4
...
...
@@ -65,10 +65,10 @@ LINPHONE_BEGIN_NAMESPACE
void
l_assert
(
const
char
*
condition
,
const
char
*
file
,
int
line
);
#ifdef DEBUG
#if
n
def 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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment