[Lldb-commits] [lldb] [lldb] Inline expression evaluator error visualization (PR #106470)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 24 16:35:47 PDT 2024


================
@@ -1887,7 +1887,8 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
                                        CommandReturnObject &result,
                                        bool force_repeat_command) {
   std::string command_string(command_line);
-  std::string original_command_string(command_line);
+  std::string original_command_string(command_string);
+  std::string real_original_command_string(command_string);
----------------
medismailben wrote:

nit: does this makes the variable above not the real original command string :p ? may be we can find a better name or write a comment explaining the nuance between the 2

https://github.com/llvm/llvm-project/pull/106470


More information about the lldb-commits mailing list