mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Add a missing 'const' qualifier to keep VC2019 happy
This commit is contained in:
parent
7143592e50
commit
73b3ca30bb
1 changed files with 1 additions and 1 deletions
|
|
@ -351,7 +351,7 @@ SessionPlaylists::update_after_tempo_map_change ()
|
|||
namespace {
|
||||
struct id_compare
|
||||
{
|
||||
bool operator()(const boost::shared_ptr<Playlist>& p1, const boost::shared_ptr<Playlist>& p2)
|
||||
bool operator()(const boost::shared_ptr<Playlist>& p1, const boost::shared_ptr<Playlist>& p2) const
|
||||
{
|
||||
return p1->id () < p2->id ();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue