[Lldb-commits] [lldb] r155970 - in /lldb/trunk/source/Breakpoint: BreakpointOptions.cpp Watchpoint.cpp
Jim Ingham
jingham at apple.com
Tue May 1 17:30:53 PDT 2012
Author: jingham
Date: Tue May 1 19:30:53 2012
New Revision: 155970
URL: http://llvm.org/viewvc/llvm-project?rev=155970&view=rev
Log:
Jeeze... Remove two unneeded #include's of ThreadPlanTestCondition.h, and replace them with
includes of ClangUserExpression that were being errantly dragged in through same.
Modified:
lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
lldb/trunk/source/Breakpoint/Watchpoint.cpp
Modified: lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointOptions.cpp?rev=155970&r1=155969&r2=155970&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/BreakpointOptions.cpp (original)
+++ lldb/trunk/source/Breakpoint/BreakpointOptions.cpp Tue May 1 19:30:53 2012
@@ -20,7 +20,7 @@
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/ThreadSpec.h"
-#include "lldb/Target/ThreadPlanTestCondition.h"
+#include "lldb/Expression/ClangUserExpression.h"
using namespace lldb;
using namespace lldb_private;
Modified: lldb/trunk/source/Breakpoint/Watchpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/Watchpoint.cpp?rev=155970&r1=155969&r2=155970&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/Watchpoint.cpp (original)
+++ lldb/trunk/source/Breakpoint/Watchpoint.cpp Tue May 1 19:30:53 2012
@@ -18,7 +18,7 @@
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/ThreadSpec.h"
-#include "lldb/Target/ThreadPlanTestCondition.h"
+#include "lldb/Expression/ClangUserExpression.h"
using namespace lldb;
using namespace lldb_private;
More information about the lldb-commits
mailing list