mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
16 lines
202 B
C
16 lines
202 B
C
|
#pragma once
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#define ASSERT(x) assert(x)
|
||
|
#define ASSERT_NOT_REACHED() assert(false)
|
||
|
|
||
|
namespace AK {
|
||
|
|
||
|
inline void notImplemented() { assert(false); }
|
||
|
|
||
|
}
|
||
|
|
||
|
using AK::notImplemented;
|
||
|
|