1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:28:13 +00:00

LibC+AK: Remove our custom macros from <assert.h>

Other software might not expect these to be defined and behave
differently if they _are_ defined, e.g. scummvm which checks if
the TODO macro is defined and fails to build if it is.
This commit is contained in:
Gunnar Beutner 2021-06-07 14:00:29 +02:00 committed by Andreas Kling
parent c6ce7c9326
commit d2662df57c
5 changed files with 6 additions and 10 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/Assertions.h>
#include <AK/Atomic.h>
#include <AK/Format.h>
#include <AK/NonnullRefPtr.h>