[Lldb-commits] [lldb] 30a4028 - [lldb][NFC] Fix doxygen comment on top of GetMangledTypeName

Augusto Noronha via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 21 10:37:55 PDT 2024


Author: Augusto Noronha
Date: 2024-10-21T10:37:46-07:00
New Revision: 30a402833f50b14148c8b963f3ffaaeaeea5fd78

URL: https://github.com/llvm/llvm-project/commit/30a402833f50b14148c8b963f3ffaaeaeea5fd78
DIFF: https://github.com/llvm/llvm-project/commit/30a402833f50b14148c8b963f3ffaaeaeea5fd78.diff

LOG: [lldb][NFC] Fix doxygen comment on top of GetMangledTypeName

Added: 
    

Modified: 
    lldb/include/lldb/Symbol/TypeSystem.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Symbol/TypeSystem.h b/lldb/include/lldb/Symbol/TypeSystem.h
index 416445a60bd017..b06bfa583bad6d 100644
--- a/lldb/include/lldb/Symbol/TypeSystem.h
+++ b/lldb/include/lldb/Symbol/TypeSystem.h
@@ -237,8 +237,8 @@ class TypeSystem : public PluginInterface,
 
   virtual ConstString GetDisplayTypeName(lldb::opaque_compiler_type_t type) = 0;
 
-  // Defaults to GetTypeName(type).  Override if your language desires
-  // specialized behavior.
+  /// Defaults to GetTypeName(type).  Override if your language desires
+  /// specialized behavior.
   virtual ConstString GetMangledTypeName(lldb::opaque_compiler_type_t type);
 
   virtual uint32_t


        


More information about the lldb-commits mailing list