diff options
| -rw-r--r-- | type.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -532,6 +532,13 @@ Confidence<bool> Type::IsConst() const } +Confidence<bool> Type::IsVolatile() const +{ + BNBoolWithConfidence result = BNIsTypeVolatile(m_object); + return Confidence<bool>(result.value, result.confidence); +} + + Confidence<Ref<Type>> Type::GetChildType() const { BNTypeWithConfidence type = BNGetChildType(m_object); |
