This revision was automatically updated to reflect the committed changes. Closed by commit rG1695dd175242: [lldb][NFC] Fix documentation for EncodingDataType (authored by ljmf00).
Changed prior to commit: https://reviews.llvm.org/D113605?vs=386362&id=394345#toc Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D113605/new/ https://reviews.llvm.org/D113605 Files: lldb/include/lldb/Symbol/Type.h Index: lldb/include/lldb/Symbol/Type.h =================================================================== --- lldb/include/lldb/Symbol/Type.h +++ lldb/include/lldb/Symbol/Type.h @@ -66,6 +66,7 @@ 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 @@ /// 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 @@ 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 };
Index: lldb/include/lldb/Symbol/Type.h =================================================================== --- lldb/include/lldb/Symbol/Type.h +++ lldb/include/lldb/Symbol/Type.h @@ -66,6 +66,7 @@ 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 @@ /// 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 @@ 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 };
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits