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(); _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits