forked from OSchip/llvm-project
[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:
parent
9964b0ef82
commit
873e8b96b1
|
@ -20,6 +20,7 @@
|
|||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <iterator>
|
||||
#include <new>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <tuple>
|
||||
|
|
Loading…
Reference in New Issue