diff options
| -rw-r--r-- | lldb/include/lldb/Symbol/CompilerType.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/include/lldb/Symbol/CompilerType.h b/lldb/include/lldb/Symbol/CompilerType.h index 1053599d26f..353313d8e2a 100644 --- a/lldb/include/lldb/Symbol/CompilerType.h +++ b/lldb/include/lldb/Symbol/CompilerType.h @@ -287,7 +287,9 @@ public: struct IntegralTemplateArgument; + /// Return the size of the type in bytes. llvm::Optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const; + /// Return the size of the type in bits. llvm::Optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const; lldb::Encoding GetEncoding(uint64_t &count) const; |

