[Lldb-commits] [lldb] r361316 - [CommandInterpreter] Fix SkipAppInitFiles setter

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue May 21 14:33:06 PDT 2019


Author: jdevlieghere
Date: Tue May 21 14:33:06 2019
New Revision: 361316

URL: http://llvm.org/viewvc/llvm-project?rev=361316&view=rev
Log:
[CommandInterpreter] Fix SkipAppInitFiles setter

The SkipAppInitFiles setter was ignoring its import argument.

Modified:
    lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h

Modified: lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h?rev=361316&r1=361315&r2=361316&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h (original)
+++ lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h Tue May 21 14:33:06 2019
@@ -404,7 +404,7 @@ public:
   }
 
   void SkipAppInitFiles(bool skip_app_init_files) {
-    m_skip_app_init_files = m_skip_lldbinit_files;
+    m_skip_app_init_files = skip_app_init_files;
   }
 
   bool GetSynchronous();




More information about the lldb-commits mailing list