summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-09-14 01:27:48 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-09-14 01:27:48 +0000
commit553f93396367fd1e1372d41c02583b2dc060947f (patch)
treefd905020bbc6cc054550236490c17bd5f02bef47
parentac241fe9f0d73c6f632e4f7f89e06b698d39da54 (diff)
downloadllvm-553f93396367fd1e1372d41c02583b2dc060947f.tar.gz
llvm-553f93396367fd1e1372d41c02583b2dc060947f.tar.bz2
llvm-553f93396367fd1e1372d41c02583b2dc060947f.tar.xz
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
-rw-r--r--lib/DebugInfo/DWARFDebugArangeSet.cpp1
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;