summaryrefslogtreecommitdiff
path: root/src/stereo_picture_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-12 00:38:01 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-12 01:22:10 +0200
commitee23803a3dced33ae93346dd1e5cb6453d873023 (patch)
tree85ac9d3f781d52228cf63468878ad166f429e5e6 /src/stereo_picture_asset.h
parent2fa5b7bfeb3826c20f2fe80f272b556d61935063 (diff)
Add some missing override statements.sub-rework
Diffstat (limited to 'src/stereo_picture_asset.h')
-rw-r--r--src/stereo_picture_asset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stereo_picture_asset.h b/src/stereo_picture_asset.h
index 897ed4a4..a3365048 100644
--- a/src/stereo_picture_asset.h
+++ b/src/stereo_picture_asset.h
@@ -58,14 +58,14 @@ public:
explicit StereoPictureAsset (Fraction edit_rate, Standard standard);
/** Start a progressive write to a StereoPictureAsset */
- std::shared_ptr<PictureAssetWriter> start_write (boost::filesystem::path file, bool);
+ std::shared_ptr<PictureAssetWriter> start_write (boost::filesystem::path file, bool) override;
std::shared_ptr<StereoPictureAssetReader> start_read () const;
bool equals (
std::shared_ptr<const Asset> other,
EqualityOptions opt,
NoteHandler note
- ) const;
+ ) const override;
};