Skip to content
Snippets Groups Projects
Commit ff35cf92 authored by Reid Spencer's avatar Reid Spencer
Browse files

Doxygenize a comment.

llvm-svn: 14115
parent 1080b373
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment