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
   };
 


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
  • [Lldb-commits] [PATCH] D1... Luís Ferreira via Phabricator via lldb-commits

Reply via email to