1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

DenseMap.h needs <new> because it explicitly calls operator new/delete.

Patch by John McCall!

llvm-svn: 70068
This commit is contained in:
Chris Lattner 2009-04-25 19:50:14 +00:00
parent d68b203337
commit aad8bd245f

View File

@ -18,6 +18,7 @@
#include "llvm/Support/MathExtras.h"
#include <cassert>
#include <utility>
#include <new>
namespace llvm {