Skip to content

Commit 1695dd1

Browse files
committed
[lldb][NFC] Fix documentation for EncodingDataType
Reviewed By: teemperor Differential Revision: https://reviews.llvm.org/D113605
1 parent c57b2a0 commit 1695dd1

File tree

1 file changed

+3
-1
lines changed
  • lldb/include/lldb/Symbol

1 file changed

+3
-1
lines changed

lldb/include/lldb/Symbol/Type.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ class SymbolFileType : public std::enable_shared_from_this<SymbolFileType>,
6666
class Type : public std::enable_shared_from_this<Type>, public UserID {
6767
public:
6868
enum EncodingDataType {
69+
/// Invalid encoding.
6970
eEncodingInvalid,
7071
/// This type is the type whose UID is m_encoding_uid.
7172
eEncodingIsUID,
@@ -78,7 +79,7 @@ class Type : public std::enable_shared_from_this<Type>, public UserID {
7879
/// This type is the type whose UID is m_encoding_uid with the volatile
7980
/// qualifier added.
8081
eEncodingIsVolatileUID,
81-
/// This type is pointer to a type whose UID is m_encoding_uid.
82+
/// This type is alias to a type whose UID is m_encoding_uid.
8283
eEncodingIsTypedefUID,
8384
/// This type is pointer to a type whose UID is m_encoding_uid.
8485
eEncodingIsPointerUID,
@@ -88,6 +89,7 @@ class Type : public std::enable_shared_from_this<Type>, public UserID {
8889
eEncodingIsRValueReferenceUID,
8990
/// This type is the type whose UID is m_encoding_uid as an atomic type.
9091
eEncodingIsAtomicUID,
92+
/// This type is the synthetic type whose UID is m_encoding_uid.
9193
eEncodingIsSyntheticUID
9294
};
9395

0 commit comments

Comments
 (0)