#define TETL_ENABLE_CUSTOM_ASSERT_HANDLER 1
#undef NDEBUG
#include <stdio.h>
#include <stdlib.h>
#if defined(TETL_COMPILER_MSVC)
#pragma warning(disable: 4127)
#endif
template <typename Assertion>
{
::printf("EXCEPTION: %s:%d\n", msg.file, msg.line);
}
}
auto main() -> int
{
}
#if defined(TETL_COMPILER_MSVC)
#pragma warning(default: 4127)
#endif
auto exit(int) -> void
Definition assert.hpp:16
#define assert(...)
Definition cassert.hpp:19
#define EXIT_SUCCESS
Successful execution of a program.
Definition exit.hpp:8
Definition adjacent_find.hpp:8
auto assert_handler(Assertion const &msg) -> void
Definition assert.hpp:39