[Lldb-commits] [PATCH] D113605: [lldb][NFC] Fix documentation for EncodingDataType

Luís Ferreira via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 14 12:15:26 PST 2021


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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113605.394345.patch
Type: text/x-patch
Size: 1114 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211214/a80ad686/attachment-0001.bin>


More information about the lldb-commits mailing list