1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-04 00:23:25 +08:00

Merge pull request #68 from MoeMod/csgo

Fix a compilation error
This commit is contained in:
David Anderson 2020-02-23 11:35:57 -08:00 committed by GitHub
commit 8a7b2081ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -764,7 +764,7 @@ inline void CBitVecT<BASE_OPS>::CopyTo(CBitVecT *out) const
{ {
out->Resize( this->GetNumBits() ); out->Resize( this->GetNumBits() );
ValidateOperand( *out ); this->ValidateOperand( *out );
Assert( out != this ); Assert( out != this );
memcpy( out->Base(), this->Base(), this->GetNumDWords() * sizeof( int ) ); memcpy( out->Base(), this->Base(), this->GetNumDWords() * sizeof( int ) );