summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-03-04 17:43:00 +0000
committerZachary Turner <zturner@google.com>2015-03-04 17:43:00 +0000
commitfc8588136cd5a2ff66646175446894056a63d25b (patch)
tree99fdfa981b1dece4171cf40da0ffd1a4e5d4c6fc /lldb/source/Expression
parent20401eecd6744a8d925a2414e640e0602f615826 (diff)
downloadbcm5719-llvm-fc8588136cd5a2ff66646175446894056a63d25b.tar.gz
bcm5719-llvm-fc8588136cd5a2ff66646175446894056a63d25b.zip
Don't #include clang headers from BreakpointLocation.h
llvm-svn: 231263
Diffstat (limited to 'lldb/source/Expression')
-rw-r--r--lldb/source/Expression/ClangUserExpression.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/ClangUserExpression.cpp b/lldb/source/Expression/ClangUserExpression.cpp
index 1ce5049b119..21c6de5c5a6 100644
--- a/lldb/source/Expression/ClangUserExpression.cpp
+++ b/lldb/source/Expression/ClangUserExpression.cpp
@@ -800,7 +800,7 @@ lldb::ExpressionResults
ClangUserExpression::Execute (Stream &error_stream,
ExecutionContext &exe_ctx,
const EvaluateExpressionOptions& options,
- ClangUserExpression::ClangUserExpressionSP &shared_ptr_to_me,
+ lldb::ClangUserExpressionSP &shared_ptr_to_me,
lldb::ClangExpressionVariableSP &result)
{
// The expression log is quite verbose, and if you're just tracking the execution of the
@@ -1009,7 +1009,7 @@ ClangUserExpression::Evaluate (ExecutionContext &exe_ctx,
if (process == NULL || !process->CanJIT())
execution_policy = eExecutionPolicyNever;
- ClangUserExpressionSP user_expression_sp (new ClangUserExpression (expr_cstr, expr_prefix, language, desired_type));
+ lldb::ClangUserExpressionSP user_expression_sp (new ClangUserExpression (expr_cstr, expr_prefix, language, desired_type));
StreamString error_stream;
OpenPOWER on IntegriCloud