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

Reduce dependence on STL.

This commit is contained in:
Andreas Kling 2018-10-16 12:10:01 +02:00
parent 0c1a4e8de3
commit fd708a4cb1
8 changed files with 48 additions and 34 deletions

View file

@ -1,7 +1,8 @@
#pragma once
#include <cstddef>
#include <utility>
namespace std {
typedef decltype(nullptr) nullptr_t;
}
namespace AK {