diff options
author | Lang Hames <lhames@gmail.com> | 2016-03-25 19:27:24 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-03-25 19:27:24 +0000 |
commit | 09ff326ca23ea631ba5707f17804eb70375196cc (patch) | |
tree | e2c24feba60d303d9c743752d83d1a5ebd0a18f0 /lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | |
parent | e34aa7f48242bdfa611337d3c1557ffc7f59a35a (diff) | |
download | bcm5719-llvm-09ff326ca23ea631ba5707f17804eb70375196cc.tar.gz bcm5719-llvm-09ff326ca23ea631ba5707f17804eb70375196cc.zip |
Fix now-ambiguous references to Error.
llvm-svn: 264449
Diffstat (limited to 'lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp index 763fc738598..3a9719432b7 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp @@ -793,7 +793,7 @@ static bool FindFunctionInModule (ConstString &mangled_name, return false; } -Error +lldb_private::Error ClangExpressionParser::PrepareForExecution (lldb::addr_t &func_addr, lldb::addr_t &func_end, lldb::IRExecutionUnitSP &execution_unit_sp, @@ -805,7 +805,7 @@ ClangExpressionParser::PrepareForExecution (lldb::addr_t &func_addr, func_end = LLDB_INVALID_ADDRESS; Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EXPRESSIONS)); - Error err; + lldb_private::Error err; std::unique_ptr<llvm::Module> llvm_module_ap (m_code_generator->ReleaseModule()); @@ -872,7 +872,7 @@ ClangExpressionParser::PrepareForExecution (lldb::addr_t &func_addr, if (execution_policy != eExecutionPolicyAlways && execution_policy != eExecutionPolicyTopLevel) { - Error interpret_error; + lldb_private::Error interpret_error; bool interpret_function_calls = !process ? false : process->CanInterpretFunctionCalls(); can_interpret = @@ -957,11 +957,11 @@ ClangExpressionParser::PrepareForExecution (lldb::addr_t &func_addr, return err; } -Error +lldb_private::Error ClangExpressionParser::RunStaticInitializers (lldb::IRExecutionUnitSP &execution_unit_sp, ExecutionContext &exe_ctx) { - Error err; + lldb_private::Error err; lldbassert(execution_unit_sp.get()); lldbassert(exe_ctx.HasThreadScope()); |