-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Open
Milestone
Description
Lines 135 to 137 in 9ad04ff
#elif defined(ANDROID) || defined(__SYMBIAN32__) | |
#include <assert.h> | |
#define SDL_TriggerBreakpoint() assert(0) |
The assert
macro is disabled when building with -DNDEBUG
, so SDL_TriggerBreakpoint
might inadvertently become a no-op.
The Android case was added by @VladSerhiienko in 47deebe (#7202)
The Symbian case was added by @mupfdev in 7ae6459
I propose to remove this case, or if no replacement can be found, add a && !defined(NDEBUG)
to the conditional
I suppose the N-Gage ARM processor has some builtin and/or assembly operation to replace this with?
Metadata
Metadata
Assignees
Labels
No labels