mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
16 lines
192 B
C++
16 lines
192 B
C++
#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;
|
|
|