summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-05-21 21:33:06 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-05-21 21:33:06 +0000
commitd008183ea4902b82ed92937c845d60792e871c50 (patch)
treefdfde05dcec6bfda9a28b766846bd124a26deb46
parentd34d96770e3fe4d019a8205d5f3b7f26ef5c0003 (diff)
downloadbcm5719-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.h2
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();
OpenPOWER on IntegriCloud