1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 09:20:46 +00:00
serenity/AK/Assertions.h

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;