kakoune/src/assert.hh

26 lines
492 B
C++
Raw Normal View History

2011-09-09 21:24:18 +02:00
#ifndef assert_hh_INCLUDED
#define assert_hh_INCLUDED
namespace Kakoune
{
2012-10-17 17:01:08 +02:00
void on_assert_failed(const char* message);
2011-09-09 21:24:18 +02:00
}
#define STRINGIFY(X) #X
#define TOSTRING(X) STRINGIFY(X)
#define COMMA ,
2011-09-09 21:24:18 +02:00
#ifdef KAK_DEBUG
#define kak_assert(condition) \
if (not (condition)) \
on_assert_failed("assert failed \"" #condition \
"\" at " __FILE__ ":" TOSTRING(__LINE__))
#else
#define kak_assert(condition)
#endif
2011-09-09 21:24:18 +02:00
#endif // assert_hh_INCLUDED