diff options
author | Greg Clayton <gclayton@apple.com> | 2011-11-10 19:20:52 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-11-10 19:20:52 +0000 |
commit | 66016fd806571e3cc243aade0c36f86d45c32626 (patch) | |
tree | 899ec89a864e4ab5aba77353e57302fc47c241bc /lldb/scripts/Python | |
parent | c14871cc6704f9ea2951b0f542be1ed5e211dd7c (diff) | |
download | bcm5719-llvm-66016fd806571e3cc243aade0c36f86d45c32626.tar.gz bcm5719-llvm-66016fd806571e3cc243aade0c36f86d45c32626.zip |
<rdar://problem/9334299>
Added the ability to get a type without qualifiers (const, volatile, restrict, etc).
llvm-svn: 144302
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBType.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBType.i b/lldb/scripts/Python/interface/SBType.i index 589287a2d38..2cc384085b6 100644 --- a/lldb/scripts/Python/interface/SBType.i +++ b/lldb/scripts/Python/interface/SBType.i @@ -143,6 +143,9 @@ public: GetDereferencedType(); lldb::SBType + GetUnqualifiedType(); + + lldb::SBType GetBasicType (lldb::BasicType type); uint32_t |