File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ class SymbolFileType : public std::enable_shared_from_this<SymbolFileType>,
6666class Type : public std ::enable_shared_from_this<Type>, public UserID {
6767public:
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
You can’t perform that action at this time.
0 commit comments