1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-10 00:51:13 +02:00

more comments about TrackIterRange operators

This commit is contained in:
Paul Licameli 2018-10-30 09:32:18 -04:00
parent cc2c3dc2fc
commit 793949aa29

View File

@ -1015,6 +1015,7 @@ template <
}
// Specify the added conjunct as a pointer to member function
// Read + as "and"
template< typename R, typename C >
TrackIterRange operator + ( R ( C ::* pmf ) () const ) const
{
@ -1033,6 +1034,7 @@ template <
}
// Specify the negated conjunct as a pointer to member function
// Read - as "and not"
template< typename R, typename C >
TrackIterRange operator - ( R ( C ::* pmf ) () const ) const
{