From 7bf0aedf3531ddc1649709cf1c54993684b0f02b Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 4 Jul 2019 10:35:31 +0000 Subject: [PATCH] Fix -Wdocumentation param warning. Don't put the full stop at the end of a param name - it confuses the doxygen parser llvm-svn: 365128 --- lib/Bitcode/Reader/BitcodeReader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {