[llvm] r365128 - Fix -Wdocumentation param warning.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 4 03:35:31 PDT 2019


Author: rksimon
Date: Thu Jul  4 03:35:31 2019
New Revision: 365128

URL: http://llvm.org/viewvc/llvm-project?rev=365128&view=rev
Log:
Fix -Wdocumentation param warning.

Don't put the full stop at the end of a param name - it confuses the doxygen parser

Modified:
    llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp

Modified: llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp?rev=365128&r1=365127&r2=365128&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp (original)
+++ llvm/trunk/lib/Bitcode/Reader/BitcodeReader.cpp Thu Jul  4 03:35:31 2019
@@ -616,13 +616,13 @@ private:
   }
 
   /// Return the flattened type (suitable for use in a Value)
-  /// specified by the given \param ID.
+  /// specified by the given \param ID .
   Type *getTypeByID(unsigned ID) {
     return flattenPointerTypes(getFullyStructuredTypeByID(ID));
   }
 
   /// Return the fully structured (bitcode-reader internal) type
-  /// corresponding to the given \param ID.
+  /// corresponding to the given \param ID .
   Type *getFullyStructuredTypeByID(unsigned ID);
 
   Value *getFnValueByID(unsigned ID, Type *Ty, Type **FullTy = nullptr) {




More information about the llvm-commits mailing list