Author: tfiala Date: Wed Oct 28 10:24:19 2015 New Revision: 251522 URL: http://llvm.org/viewvc/llvm-project?rev=251522&view=rev Log: Fix build break on OS X from cleanup check-in.
I'll track down why our CI is not sending out emails on build breaks. Modified: lldb/trunk/source/Core/IOHandler.cpp Modified: lldb/trunk/source/Core/IOHandler.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/IOHandler.cpp?rev=251522&r1=251521&r2=251522&view=diff ============================================================================== --- lldb/trunk/source/Core/IOHandler.cpp (original) +++ lldb/trunk/source/Core/IOHandler.cpp Wed Oct 28 10:24:19 2015 @@ -14,6 +14,9 @@ #endif // C++ Includes +#if defined(__APPLE__) +#include <deque> +#endif #include <string> // Other libraries and framework includes @@ -36,6 +39,8 @@ #include "lldb/Target/RegisterContext.h" #include "lldb/Target/ThreadPlan.h" + + using namespace lldb; using namespace lldb_private; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits