[Lldb-commits] [lldb] r230646 - [swig] Generate bindings for SBDebugger::*UseColor().

Bruce Mitchener bruce.mitchener at gmail.com
Thu Feb 26 09:46:16 PST 2015


Author: brucem
Date: Thu Feb 26 11:46:16 2015
New Revision: 230646

URL: http://llvm.org/viewvc/llvm-project?rev=230646&view=rev
Log:
[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

Modified:
    lldb/trunk/scripts/Python/interface/SBDebugger.i

Modified: lldb/trunk/scripts/Python/interface/SBDebugger.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBDebugger.i?rev=230646&r1=230645&r2=230646&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBDebugger.i (original)
+++ lldb/trunk/scripts/Python/interface/SBDebugger.i Thu Feb 26 11:46:16 2015
@@ -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);
 





More information about the lldb-commits mailing list