diff options
author | Sean Callanan <scallanan@apple.com> | 2016-06-30 18:00:32 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-06-30 18:00:32 +0000 |
commit | 3696f861882185785a12b739eb407e4a35578bc2 (patch) | |
tree | e53fd984bf6fec3b18d77223214686b8a1c5c5bb /lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp | |
parent | 2f63da28878c33ce34b93916e8a79982c46aec13 (diff) | |
download | bcm5719-llvm-3696f861882185785a12b739eb407e4a35578bc2.tar.gz bcm5719-llvm-3696f861882185785a12b739eb407e4a35578bc2.zip |
Removed the redundant "%d errors parsing expression" error. Nobody keeps score.
<rdar://problem/24306284>
llvm-svn: 274254
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp index a756e2b3d1e..52d49aecec9 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp @@ -511,8 +511,6 @@ ClangUserExpression::Parse(DiagnosticManager &diagnostic_manager, ExecutionConte m_fixed_text = fixed_expression.substr(fixed_start, fixed_end - fixed_start); } } - diagnostic_manager.Printf(eDiagnosticSeverityError, "%u error%s parsing expression", num_errors, - num_errors == 1 ? "" : "s"); ResetDeclMap(); // We are being careful here in the case of breakpoint conditions. |