1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 16:40:07 +02:00

Fix error in Mac build uncovered by the previous

This commit is contained in:
Paul Licameli 2017-06-25 15:36:32 -04:00
parent a2192b3734
commit a5d718f79a

View File

@ -194,6 +194,7 @@ class PROFILE_DLL_API BlockFile /* not final, abstract */ {
ReadLock &operator= (const ReadLock &that)
{
*((ReadLockBase*)this) = that;
return *this;
}
#endif
ReadLock(ReadLock&&that) : ReadLockBase{ std::move(that) } {}