mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Adding case for BeOS.
This commit is contained in:
parent
c342ebf38d
commit
8af5c0fdb4
@ -60,6 +60,15 @@
|
||||
#define XP_ASSERT(X) assert(X) /* are we having fun yet? */
|
||||
#endif
|
||||
|
||||
#elif defined (XP_BEOS)
|
||||
|
||||
#ifdef DEBUG
|
||||
#include <assert.h>
|
||||
#define XP_ASSERT(X) assert(X)
|
||||
#else
|
||||
#define XP_ASSERT(X)
|
||||
#endif
|
||||
|
||||
#elif defined (XP_WIN)
|
||||
#ifdef DEBUG
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user