[compiler-rt][iwyu] explicitly includes `<new>` in xray_utils.cpp

Compiling compiler-rt with Clang modules and libc++ revealed that the
global `operator new` is being called without including `<new>`.

Differential Revision: https://reviews.llvm.org/D105401
This commit is contained in:
Christopher Di Bella 2021-07-04 02:20:10 +00:00
parent 9964b0ef82
commit 873e8b96b1
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#include <errno.h>
#include <fcntl.h>
#include <iterator>
#include <new>
#include <stdlib.h>
#include <sys/types.h>
#include <tuple>