diff options
Diffstat (limited to 'internal_rewrite/Valve')
| -rw-r--r-- | internal_rewrite/Valve/dt_common.h | 6 | ||||
| -rw-r--r-- | internal_rewrite/Valve/dt_recv.h | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/internal_rewrite/Valve/dt_common.h b/internal_rewrite/Valve/dt_common.h index 9555056..e936587 100644 --- a/internal_rewrite/Valve/dt_common.h +++ b/internal_rewrite/Valve/dt_common.h @@ -6,6 +6,8 @@ // //=============================================================================// +#pragma warning( push, 0 ) + #ifndef DATATABLE_COMMON_H #define DATATABLE_COMMON_H @@ -223,4 +225,6 @@ inline int NumBitsForCount( int nMaxElements ) } -#endif // DATATABLE_COMMON_H
\ No newline at end of file +#endif // DATATABLE_COMMON_H + +#pragma warning( pop )
\ No newline at end of file diff --git a/internal_rewrite/Valve/dt_recv.h b/internal_rewrite/Valve/dt_recv.h index b47922c..6e73bdb 100644 --- a/internal_rewrite/Valve/dt_recv.h +++ b/internal_rewrite/Valve/dt_recv.h @@ -6,6 +6,8 @@ // //=============================================================================// +#pragma warning( push, 0 ) + #ifndef DATATABLE_RECV_H #define DATATABLE_RECV_H @@ -583,4 +585,6 @@ inline T GetMethod( const void* instance, size_t index ) return reinterpret_cast<T>( GetVTable( instance )[ index ] ); } -#endif // DATATABLE_RECV_H
\ No newline at end of file +#endif // DATATABLE_RECV_H + +#pragma warning( pop )
\ No newline at end of file |
