mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
15 lines
202 B
C++
15 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;
|
|
|