Bug 929404: Mark unused-depending-on-build-config function as 'inline' instead of 'static'. r=derf

This commit is contained in:
Daniel Holbert 2013-10-23 08:20:54 +02:00
parent 0fe33eb7d9
commit bb00d0a6dc

View File

@ -62,7 +62,7 @@ static uint16_t LEUint16(const unsigned char* p)
} }
// Reads a little-endian encoded signed 16bit integer at p. // Reads a little-endian encoded signed 16bit integer at p.
static int16_t LEInt16(const unsigned char* p) inline int16_t LEInt16(const unsigned char* p)
{ {
return static_cast<int16_t>(LEUint16(p)); return static_cast<int16_t>(LEUint16(p));
} }