mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
17 lines
195 B
C++
17 lines
195 B
C++
#pragma once
|
|
|
|
#ifdef KERNEL
|
|
#include <Kernel/Assertions.h>
|
|
#else
|
|
#include <LibC/assert.h>
|
|
#endif
|
|
|
|
namespace AK {
|
|
|
|
inline void not_implemented() { ASSERT(false); }
|
|
|
|
}
|
|
|
|
using AK::not_implemented;
|
|
|