From d9df1117f5108fa8fa8ede70290912759dc76d17 Mon Sep 17 00:00:00 2001 From: Jordan Cristiano Date: Wed, 27 May 2015 22:52:10 -0400 Subject: [PATCH] Fixed __restrict warning in bitbuf --- external/sourcesdk/bitbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/sourcesdk/bitbuf.h b/external/sourcesdk/bitbuf.h index d1d5930..5cce666 100644 --- a/external/sourcesdk/bitbuf.h +++ b/external/sourcesdk/bitbuf.h @@ -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,