mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 20:57:44 +00:00
Import all this stuff into a single repo called Serenity.
This commit is contained in:
commit
5a30055157
67 changed files with 8836 additions and 0 deletions
15
AK/Assertions.h
Normal file
15
AK/Assertions.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue