summaryrefslogtreecommitdiff
path: root/src/mono_picture_asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-26 00:00:38 +0200
committerCarl Hetherington <cth@carlh.net>2021-06-26 00:00:38 +0200
commite97157fd7fe6767fdc2b1fa32df5b821296907a9 (patch)
tree8a503fdf7e5958bdbb3db8e98fc7d1fd313e63ad /src/mono_picture_asset.cc
parent97b4901435e1ffc59d347cf7478a31fea8fae3a3 (diff)
C++11 cleanup.
Diffstat (limited to 'src/mono_picture_asset.cc')
-rw-r--r--src/mono_picture_asset.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mono_picture_asset.cc b/src/mono_picture_asset.cc
index 78ab8709..5aba95d2 100644
--- a/src/mono_picture_asset.cc
+++ b/src/mono_picture_asset.cc
@@ -94,7 +94,7 @@ MonoPictureAsset::MonoPictureAsset (Fraction edit_rate, Standard standard)
static void
-storing_note_handler (list<pair<NoteType, string> >& notes, NoteType t, string s)
+storing_note_handler (list<pair<NoteType, string>>& notes, NoteType t, string s)
{
notes.push_back (make_pair (t, s));
}
@@ -156,7 +156,7 @@ MonoPictureAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, No
auto frame_A = reader->get_frame (i);
auto frame_B = other_reader->get_frame (i);
- list<pair<NoteType, string> > notes;
+ list<pair<NoteType, string>> notes;
if (!frame_buffer_equals (
i, opt, bind (&storing_note_handler, boost::ref(notes), _1, _2),