[Lldb-commits] [lldb] r216323 - 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

Enrico Granata egranata at apple.com
Sat Aug 23 11:22:09 PDT 2014


Author: enrico
Date: Sat Aug 23 13:22:09 2014
New Revision: 216323

URL: http://llvm.org/viewvc/llvm-project?rev=216323&view=rev
Log:
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

Modified:
    lldb/trunk/source/Utility/StringLexer.cpp

Modified: lldb/trunk/source/Utility/StringLexer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/StringLexer.cpp?rev=216323&r1=216322&r2=216323&view=diff
==============================================================================
--- lldb/trunk/source/Utility/StringLexer.cpp (original)
+++ lldb/trunk/source/Utility/StringLexer.cpp Sat Aug 23 13:22:09 2014
@@ -9,6 +9,8 @@
 
 #include "lldb/Utility/StringLexer.h"
 
+#include <algorithm>
+
 using namespace lldb_utility;
 
 StringLexer::StringLexer (std::string s) :





More information about the lldb-commits mailing list