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

Patch by John McCall!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-04-25 19:50:14 +00:00
parent 38300e91f5
commit 11d8fb9609

View File

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