Doxygenize a comment.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 10 Jun 2004 08:27:00 +0000 (08:27 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 10 Jun 2004 08:27:00 +0000 (08:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14115 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/ReaderPrimitives.h

index 496ab2a5b13eeb6a15bd47ed26fc2914b4bd98db..5c0361f1e93841604a83a9eb30ab5f2c437fdbfa 100644 (file)
@@ -20,6 +20,7 @@
 
 namespace llvm {
 
+  /// @brief Read an unsigned integer
   static inline unsigned read(const unsigned char *&Buf,
                               const unsigned char *EndBuf) {
     if (Buf+4 > EndBuf) throw std::string("Ran out of data!");
@@ -28,8 +29,7 @@ namespace llvm {
   }
 
 
-  // read_vbr - Read an unsigned integer encoded in variable bitrate format.
-  //
+  /// @brief Read an unsigned integer encoded in variable bitrate format.
   static inline unsigned read_vbr_uint(const unsigned char *&Buf, 
                                        const unsigned char *EndBuf) {
     unsigned Shift = 0;