1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Doxygenize a comment.

llvm-svn: 14115
This commit is contained in:
Reid Spencer 2004-06-10 08:27:00 +00:00
parent 49b2fca671
commit 4dcaebd069

View 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;