From 2d9eca51b78a7acab405a97e411297317507fcfc Mon Sep 17 00:00:00 2001 From: moemod <824395314@qq.com> Date: Fri, 21 Feb 2020 19:07:49 +0800 Subject: [PATCH] Fix dependent name looking-up --- public/bitvec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/bitvec.h b/public/bitvec.h index 7d46ba5f..f8e17fcb 100644 --- a/public/bitvec.h +++ b/public/bitvec.h @@ -764,7 +764,7 @@ inline void CBitVecT::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 ) );