[Lldb-commits] [PATCH] D113605: [lldb] Fix documentation for EncodingDataType
Luís Ferreira via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 10 17:03:26 PST 2021
ljmf00 updated this revision to Diff 386362.
ljmf00 retitled this revision from "[lldb] Add documentation for eEncodingIsSyntheticUID" to "[lldb] Fix documentation for EncodingDataType".
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
};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113605.386362.patch
Type: text/x-patch
Size: 1113 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211111/f132d679/attachment.bin>
More information about the lldb-commits
mailing list