1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

Kernel+AK: Move UBSanitizer to AK, and to AK namespace

In preparation for copying UBSanitizer to userspace, move the header to
AK :^)
This commit is contained in:
Andrew Kaster 2021-05-23 19:33:40 -06:00 committed by Andreas Kling
parent a223ef3c4f
commit 505f84daae
3 changed files with 7 additions and 7 deletions

View file

@ -5,14 +5,14 @@
*/
#include <AK/Format.h>
#include <AK/UBSanitizer.h>
#include <Kernel/Arch/x86/CPU.h>
#include <Kernel/KSyms.h>
#include <Kernel/UBSanitizer.h>
using namespace Kernel;
using namespace Kernel::UBSanitizer;
using namespace AK::UBSanitizer;
bool Kernel::UBSanitizer::g_ubsan_is_deadly { true };
bool AK::UBSanitizer::g_ubsan_is_deadly { true };
extern "C" {