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 | a9e7fb678d2c391d68a262cd614b76d3e305d71e (patch) | |
tree | f3c680619697017f306688408ca35a36dae2de73 /llvm/lib/DebugInfo | |
parent | 75d1cf339110b14c4ddf1253b687044a200caf13 (diff) | |
download | bcm5719-llvm-a9e7fb678d2c391d68a262cd614b76d3e305d71e.tar.gz bcm5719-llvm-a9e7fb678d2c391d68a262cd614b76d3e305d71e.zip |
Don't rely in <algorithm> being pulled in transitively.
llvm-svn: 139684
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp b/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp index 76e02f70d84..a3e2e62104c 100644 --- a/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp +++ b/llvm/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; |