summaryrefslogtreecommitdiff
path: root/AK/Assertions.h
blob: fcc1f692a7e7808819454e60b540031df2a1e0d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#ifdef KERNEL
#include <Kernel/kassert.h>
#else
#include <LibC/assert.h>
#endif

namespace AK {

inline void not_implemented() { ASSERT(false); }

}

using AK::not_implemented;