diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-14 01:27:48 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-14 01:27:48 +0000 |
commit | 553f93396367fd1e1372d41c02583b2dc060947f (patch) | |
tree | fd905020bbc6cc054550236490c17bd5f02bef47 /lib/DebugInfo/DWARFDebugArangeSet.cpp | |
parent | ac241fe9f0d73c6f632e4f7f89e06b698d39da54 (diff) |
Don't rely in <algorithm> being pulled in transitively.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139684 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo/DWARFDebugArangeSet.cpp')
-rw-r--r-- | lib/DebugInfo/DWARFDebugArangeSet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/DebugInfo/DWARFDebugArangeSet.cpp b/lib/DebugInfo/DWARFDebugArangeSet.cpp index 76e02f70d8..a3e2e62104 100644 --- a/lib/DebugInfo/DWARFDebugArangeSet.cpp +++ b/lib/DebugInfo/DWARFDebugArangeSet.cpp @@ -10,6 +10,7 @@ #include "DWARFDebugArangeSet.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" +#include <algorithm> #include <cassert> using namespace llvm; |