mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-30 00:18:45 +01:00
Fix more hassle from the MSVC STL implementation.
This commit is contained in:
@@ -63,6 +63,12 @@ using ListOfTracks = std::list< std::shared_ptr< Track > >;
|
||||
using TrackNodePointer =
|
||||
std::pair< ListOfTracks::iterator, ListOfTracks* >;
|
||||
|
||||
inline bool operator == (const TrackNodePointer &a, const TrackNodePointer &b)
|
||||
{ return a.second == b.second && a.first == b.first; }
|
||||
|
||||
inline bool operator != (const TrackNodePointer &a, const TrackNodePointer &b)
|
||||
{ return !(a == b); }
|
||||
|
||||
class ViewInfo;
|
||||
|
||||
// This is an in-session identifier of track objects across undo states
|
||||
|
||||
Reference in New Issue
Block a user