mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00:00
Get rid of #ifdef SERENITY. We're past that phase of bootstrapping.
This commit is contained in:
parent
5605295d00
commit
b5c76d7559
14 changed files with 1 additions and 95 deletions
|
@ -1,16 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#ifdef SERENITY
|
||||
#ifdef KERNEL
|
||||
#include <Kernel/kassert.h>
|
||||
#else
|
||||
#include <LibC/assert.h>
|
||||
#endif
|
||||
#else
|
||||
#include <assert.h>
|
||||
#define ASSERT(x) assert(x)
|
||||
#define ASSERT_NOT_REACHED() assert(false)
|
||||
#endif
|
||||
|
||||
namespace AK {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue