[Lldb-commits] [lldb] 757ac4c - [lldb] Reword CompilerType docstring to not say "generic type"

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 15 22:15:05 PDT 2020


Author: Dave Lee
Date: 2020-09-15T22:14:57-07:00
New Revision: 757ac4ccfb8b024454b4f445a2b5c8985da5dc8a

URL: https://github.com/llvm/llvm-project/commit/757ac4ccfb8b024454b4f445a2b5c8985da5dc8a
DIFF: https://github.com/llvm/llvm-project/commit/757ac4ccfb8b024454b4f445a2b5c8985da5dc8a.diff

LOG: [lldb] Reword CompilerType docstring to not say "generic type"

Since "generic type" has a precise meaning in some languages, reword the docstring of `CompilerType` to avoid ambiguity.

Differential Revision: https://reviews.llvm.org/D87633

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Symbol/CompilerType.h b/lldb/include/lldb/Symbol/CompilerType.h
index c5e19773d51c..614373938165 100644
--- a/lldb/include/lldb/Symbol/CompilerType.h
+++ b/lldb/include/lldb/Symbol/CompilerType.h
@@ -20,7 +20,7 @@ namespace lldb_private {
 
 class DataExtractor;
 
-/// Represents a generic type in a programming language.
+/// Generic representation of a type in a programming language.
 ///
 /// This class serves as an abstraction for a type inside one of the TypeSystems
 /// implemented by the language plugins. It does not have any actual logic in it


        


More information about the lldb-commits mailing list