diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-21 21:33:06 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-05-21 21:33:06 +0000 |
| commit | d008183ea4902b82ed92937c845d60792e871c50 (patch) | |
| tree | fdfde05dcec6bfda9a28b766846bd124a26deb46 | |
| parent | d34d96770e3fe4d019a8205d5f3b7f26ef5c0003 (diff) | |
| download | bcm5719-llvm-d008183ea4902b82ed92937c845d60792e871c50.tar.gz bcm5719-llvm-d008183ea4902b82ed92937c845d60792e871c50.zip | |
[CommandInterpreter] Fix SkipAppInitFiles setter
The SkipAppInitFiles setter was ignoring its import argument.
llvm-svn: 361316
| -rw-r--r-- | lldb/include/lldb/Interpreter/CommandInterpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Interpreter/CommandInterpreter.h b/lldb/include/lldb/Interpreter/CommandInterpreter.h index efbd849635a..34c62c5a314 100644 --- a/lldb/include/lldb/Interpreter/CommandInterpreter.h +++ b/lldb/include/lldb/Interpreter/CommandInterpreter.h @@ -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(); |

