Fix doxygen comments from r265224, NFC
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sat, 2 Apr 2016 15:16:56 +0000 (15:16 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sat, 2 Apr 2016 15:16:56 +0000 (15:16 +0000)
llvm-svn: 265225

llvm/lib/Bitcode/Writer/ValueEnumerator.h

index 0592382..4c5c03d 100644 (file)
@@ -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);
   }