forked from OSchip/llvm-project
Cleanup header dependencies of llvm/Support/Compiler.h
<new> and <cstdef> were introduced in aa60b3fd87
but the dependency
is now dead.
As a consequence you may need to include <new> where you use it while it
was auto-included as an implicit dependency before.
The impact on the codebase is small, as <new> is a very small header
(<100 SLOC) but it gets included everywhere, so that somehow counts (?)
This commit is contained in:
parent
ee522345ae
commit
4eb909c884
|
@ -17,9 +17,6 @@
|
|||
|
||||
#include "llvm/Config/llvm-config.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include <new>
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
|
|
Loading…
Reference in New Issue