[Lldb-commits] [lldb] r351243 - Add Doxygen comments.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 15 13:04:19 PST 2019


Author: adrian
Date: Tue Jan 15 13:04:18 2019
New Revision: 351243

URL: http://llvm.org/viewvc/llvm-project?rev=351243&view=rev
Log:
Add Doxygen comments.

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

Modified: lldb/trunk/include/lldb/Symbol/CompilerType.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/CompilerType.h?rev=351243&r1=351242&r2=351243&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/CompilerType.h (original)
+++ lldb/trunk/include/lldb/Symbol/CompilerType.h Tue Jan 15 13:04:18 2019
@@ -287,7 +287,9 @@ public:
 
   struct IntegralTemplateArgument;
 
+  /// Return the size of the type in bytes.
   llvm::Optional<uint64_t> GetByteSize(ExecutionContextScope *exe_scope) const;
+  /// Return the size of the type in bits.
   llvm::Optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const;
 
   lldb::Encoding GetEncoding(uint64_t &count) const;




More information about the lldb-commits mailing list