From 73b3ca30bb70128932c32ce53bcfa49a13a4bdd9 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 3 Mar 2021 12:25:47 +0000 Subject: [PATCH] Add a missing 'const' qualifier to keep VC2019 happy --- libs/ardour/session_playlists.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_playlists.cc b/libs/ardour/session_playlists.cc index 60388f394e..d8e014a7e1 100644 --- a/libs/ardour/session_playlists.cc +++ b/libs/ardour/session_playlists.cc @@ -351,7 +351,7 @@ SessionPlaylists::update_after_tempo_map_change () namespace { struct id_compare { - bool operator()(const boost::shared_ptr& p1, const boost::shared_ptr& p2) + bool operator()(const boost::shared_ptr& p1, const boost::shared_ptr& p2) const { return p1->id () < p2->id (); }