aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Utility
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2014-08-23 18:22:09 +0000
committerEnrico Granata <egranata@apple.com>2014-08-23 18:22:09 +0000
commit9f1d33637e533376bd8590d04524964abbe3091e (patch)
tree8d12fe107c2d7911f0991bc81bbcd7f82e77bba6 /lldb/source/Utility
parent9447097636913cdf3ea90ad40baca0c437b1dc27 (diff)
downloadllvm-9f1d33637e533376bd8590d04524964abbe3091e.zip
llvm-9f1d33637e533376bd8590d04524964abbe3091e.tar.gz
llvm-9f1d33637e533376bd8590d04524964abbe3091e.tar.bz2
I forgot to include the header file for std::find, and that's breaking the Linux build. Push a fix out. Patch suggested by Paul Osmialowski and Randy Smith
llvm-svn: 216323
Diffstat (limited to 'lldb/source/Utility')
-rw-r--r--lldb/source/Utility/StringLexer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Utility/StringLexer.cpp b/lldb/source/Utility/StringLexer.cpp
index 4889ed7..bde2fc6 100644
--- a/lldb/source/Utility/StringLexer.cpp
+++ b/lldb/source/Utility/StringLexer.cpp
@@ -9,6 +9,8 @@
#include "lldb/Utility/StringLexer.h"
+#include <algorithm>
+
using namespace lldb_utility;
StringLexer::StringLexer (std::string s) :