mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-25 08:58:06 +02:00
Fix more hassle from the MSVC STL implementation.
This commit is contained in:
parent
1fb333e9cc
commit
4474dec9c2
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user