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

AK: Massage it into building on my host system without breaking Serenity.

This commit is contained in:
Andreas Kling 2019-06-14 06:43:56 +02:00
parent b7cca76ca2
commit 255c7562ba
8 changed files with 54 additions and 42 deletions

View file

@ -4,6 +4,10 @@
#include <AK/StdLibExtras.h>
#include <AK/kmalloc.h>
#ifndef __serenity__
#include <new>
#endif
namespace AK {
template<typename T, int inline_capacity = 0>