[Lldb-commits] [lldb] 5a63045 - [LLDB] Fix `Wunused-result` warning

Frederik Gossen via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 8 09:10:33 PST 2021


Author: Frederik Gossen
Date: 2021-02-08T18:10:08+01:00
New Revision: 5a63045fe78834937785ed5081052e083a98077f

URL: https://github.com/llvm/llvm-project/commit/5a63045fe78834937785ed5081052e083a98077f
DIFF: https://github.com/llvm/llvm-project/commit/5a63045fe78834937785ed5081052e083a98077f.diff

LOG: [LLDB] Fix `Wunused-result` warning

Added: 
    

Modified: 
    lldb/source/Interpreter/CommandInterpreter.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 0b25abc9cdea..a7afa1034762 100644
--- a/lldb/source/Interpreter/CommandInterpreter.cpp
+++ b/lldb/source/Interpreter/CommandInterpreter.cpp
@@ -2832,7 +2832,9 @@ void CommandInterpreter::IOHandlerInputComplete(IOHandler &io_handler,
   StartHandlingCommand();
 
   OverrideExecutionContext(m_debugger.GetSelectedExecutionContext());
-  llvm::make_scope_exit([this]() { RestoreExecutionContext(); });
+  auto finalize = llvm::make_scope_exit([this]() {
+    RestoreExecutionContext();
+  });
 
   lldb_private::CommandReturnObject result(m_debugger.GetUseColor());
   HandleCommand(line.c_str(), eLazyBoolCalculate, result);


        


More information about the lldb-commits mailing list