From: Simon Pilgrim Date: Thu, 4 Jul 2019 10:35:31 +0000 (+0000) Subject: Fix -Wdocumentation param warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27f427783fe8d884a98276ae7d9b5413c0e03533;p=llvm Fix -Wdocumentation param warning. Don't put the full stop at the end of a param name - it confuses the doxygen parser git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365128 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp index de332aaa679..d54e40295b8 100644 --- a/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/lib/Bitcode/Reader/BitcodeReader.cpp @@ -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) {