diff options
author | Luís Ferreira <contact@lsferreira.net> | 2021-12-14 20:11:58 +0000 |
---|---|---|
committer | Luís Ferreira <contact@lsferreira.net> | 2021-12-14 20:13:30 +0000 |
commit | 1695dd17524264a199d3731afe8e786bd1ce58c8 (patch) | |
tree | bc8756c10e4535b4ef5424e9a1bf1e89522af42e | |
parent | c57b2a0635df9eae0b1d699f83b9b158d5a89135 (diff) | |
download | llvm-1695dd17524264a199d3731afe8e786bd1ce58c8.zip llvm-1695dd17524264a199d3731afe8e786bd1ce58c8.tar.gz llvm-1695dd17524264a199d3731afe8e786bd1ce58c8.tar.bz2 |
[lldb][NFC] Fix documentation for EncodingDataType
Reviewed By: teemperor
Differential Revision: https://reviews.llvm.org/D113605
-rw-r--r-- | lldb/include/lldb/Symbol/Type.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/include/lldb/Symbol/Type.h b/lldb/include/lldb/Symbol/Type.h index 6f89814..7754e02 100644 --- a/lldb/include/lldb/Symbol/Type.h +++ b/lldb/include/lldb/Symbol/Type.h @@ -66,6 +66,7 @@ protected: class Type : public std::enable_shared_from_this<Type>, public UserID { public: enum EncodingDataType { + /// Invalid encoding. eEncodingInvalid, /// This type is the type whose UID is m_encoding_uid. eEncodingIsUID, @@ -78,7 +79,7 @@ public: /// This type is the type whose UID is m_encoding_uid with the volatile /// qualifier added. eEncodingIsVolatileUID, - /// This type is pointer to a type whose UID is m_encoding_uid. + /// This type is alias to a type whose UID is m_encoding_uid. eEncodingIsTypedefUID, /// This type is pointer to a type whose UID is m_encoding_uid. eEncodingIsPointerUID, @@ -88,6 +89,7 @@ public: eEncodingIsRValueReferenceUID, /// This type is the type whose UID is m_encoding_uid as an atomic type. eEncodingIsAtomicUID, + /// This type is the synthetic type whose UID is m_encoding_uid. eEncodingIsSyntheticUID }; |