diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-02-26 17:46:16 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-02-26 17:46:16 +0000 |
commit | 832a28c945577eb6807e57ba647c2f37baff6aaa (patch) | |
tree | f8b499a9305f70582dec6cb1ae39280a47871466 /lldb/scripts/Python/interface | |
parent | eb05c610b487f74e9d4f64ba999807b76c9289f1 (diff) | |
download | bcm5719-llvm-832a28c945577eb6807e57ba647c2f37baff6aaa.tar.gz bcm5719-llvm-832a28c945577eb6807e57ba647c2f37baff6aaa.zip |
[swig] Generate bindings for SBDebugger::*UseColor().
Summary:
These functions were added in 2013, but not added to the SWIG
bindings.
Reviewers: ki.stfu, clayborg
Reviewed By: ki.stfu, clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D7909
llvm-svn: 230646
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBDebugger.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBDebugger.i b/lldb/scripts/Python/interface/SBDebugger.i index 48e0d5db638..8f7a7f8e6c2 100644 --- a/lldb/scripts/Python/interface/SBDebugger.i +++ b/lldb/scripts/Python/interface/SBDebugger.i @@ -256,6 +256,12 @@ public: bool GetUseExternalEditor (); + bool + SetUseColor (bool use_color); + + bool + GetUseColor () const; + static bool GetDefaultArchitecture (char *arch_name, size_t arch_name_len); |