diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-07-04 10:35:31 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-07-04 10:35:31 +0000 |
commit | 555d743fcfe2ecb91fe237439389a08ef6af6348 (patch) | |
tree | 3e57d714b51cb39acbd53f50c19c76c587904152 /llvm/lib/Bitcode/Reader | |
parent | 9a8f3ecfdb493dc4d9e63d9a6901ba8d2aec6ce3 (diff) | |
download | bcm5719-llvm-555d743fcfe2ecb91fe237439389a08ef6af6348.tar.gz bcm5719-llvm-555d743fcfe2ecb91fe237439389a08ef6af6348.zip |
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
Diffstat (limited to 'llvm/lib/Bitcode/Reader')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index de332aaa679..d54e40295b8 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/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) { |