mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Fix error in const overload of ClientData::Site::FindIf
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user