Fixed __restrict warning in bitbuf
This commit is contained in:
parent
6a40e771af
commit
d9df1117f5
2
external/sourcesdk/bitbuf.h
vendored
2
external/sourcesdk/bitbuf.h
vendored
|
@ -165,7 +165,7 @@ public:
|
|||
void WriteOneBitAt( int iBit, int nValue );
|
||||
|
||||
// Write signed or unsigned. Range is only checked in debug.
|
||||
void WriteUBitLong( unsigned int data, int numbits, bool bCheckRange=true );
|
||||
void WriteUBitLong( unsigned int data, int numbits, bool bCheckRange=true ) __restrict;
|
||||
void WriteSBitLong( int data, int numbits );
|
||||
|
||||
// Tell it whether or not the data is unsigned. If it's signed,
|
||||
|
|
Loading…
Reference in New Issue
Block a user