[util] Add missing <new> header

The <new> header was previously in one of the util headers, masking that
it was missing from these files.
This commit is contained in:
Justin C. Miller
2023-01-14 18:33:34 -08:00
parent e93f48e2f7
commit 1b0c0b6dbe
2 changed files with 2 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
#include <new>
#include <utility> #include <utility>
#include <arch/memory.h> #include <arch/memory.h>

View File

@@ -3,6 +3,7 @@
/// Definition of a simple dynamic vector collection for use in kernel space /// Definition of a simple dynamic vector collection for use in kernel space
#include <assert.h> #include <assert.h>
#include <new>
#include <string.h> #include <string.h>
#include <utility> #include <utility>