Fix error in const overload of ClientData::Site::FindIf

This commit is contained in:
Paul Licameli 2020-01-15 11:03:43 -05:00
parent 6b9c8e79cc
commit e3e75705a6

View File

@ -373,7 +373,7 @@ protected:
const auto &ptr = Dereferenceable(pObject);
if ( ptr ) {
const auto &c_ref = *ptr;
if ( function( c_ref ) );
if ( function( c_ref ) )
return &*c_ref;
}
}