From: Duncan P. N. Exon Smith Date: Sat, 2 Apr 2016 15:16:56 +0000 (+0000) Subject: Fix doxygen comments from r265224, NFC X-Git-Tag: llvmorg-3.9.0-rc1~10174 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b76b723f425a999688625f3d9271eb26ef9ee2f;p=platform%2Fupstream%2Fllvm.git Fix doxygen comments from r265224, NFC llvm-svn: 265225 --- diff --git a/llvm/lib/Bitcode/Writer/ValueEnumerator.h b/llvm/lib/Bitcode/Writer/ValueEnumerator.h index 0592382..4c5c03d 100644 --- a/llvm/lib/Bitcode/Writer/ValueEnumerator.h +++ b/llvm/lib/Bitcode/Writer/ValueEnumerator.h @@ -157,12 +157,12 @@ public: /// Check whether the current block has any metadata to emit. bool hasMDs() const { return NumModuleMDs < MDs.size(); } - // Get the MDString metadata for this block. + /// Get the MDString metadata for this block. ArrayRef getMDStrings() const { return makeArrayRef(MDs).slice(NumModuleMDs, NumMDStrings); } - // Get the non-MDString metadata for this block. + /// Get the non-MDString metadata for this block. ArrayRef getNonMDStrings() const { return makeArrayRef(MDs).slice(NumModuleMDs).slice(NumMDStrings); }