[llvm] r265225 - Fix doxygen comments from r265224, NFC

Duncan P. N. Exon Smith via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 2 08:16:56 PDT 2016


Author: dexonsmith
Date: Sat Apr  2 10:16:56 2016
New Revision: 265225

URL: http://llvm.org/viewvc/llvm-project?rev=265225&view=rev
Log:
Fix doxygen comments from r265224, NFC

Modified:
    llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h

Modified: llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h?rev=265225&r1=265224&r2=265225&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h (original)
+++ llvm/trunk/lib/Bitcode/Writer/ValueEnumerator.h Sat Apr  2 10:16:56 2016
@@ -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<const Metadata *> 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<const Metadata *> getNonMDStrings() const {
     return makeArrayRef(MDs).slice(NumModuleMDs).slice(NumMDStrings);
   }




More information about the llvm-commits mailing list