1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Fix dependent name looking-up

This commit is contained in:
moemod 2020-02-21 19:07:49 +08:00
parent 802ae03f3f
commit 2d9eca51b7

View File

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