summaryrefslogtreecommitdiff
path: root/src/reel_markers_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-14 01:00:05 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-14 01:00:05 +0200
commit274dd30f2b11fe8ea563a2ac7436c9d463865b0b (patch)
tree199e7447606339d461f6f87d16095376d8f809b3 /src/reel_markers_asset.h
parent4bd57fbbac67ac04ec47a9765b9f278aa1691851 (diff)
Fix/hide some warnings.
Diffstat (limited to 'src/reel_markers_asset.h')
-rw-r--r--src/reel_markers_asset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reel_markers_asset.h b/src/reel_markers_asset.h
index 1eae47ef..e3fbb962 100644
--- a/src/reel_markers_asset.h
+++ b/src/reel_markers_asset.h
@@ -51,7 +51,7 @@ public:
ReelMarkersAsset (Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point);
explicit ReelMarkersAsset (std::shared_ptr<const cxml::Node>);
- xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const;
+ xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const override;
bool equals (std::shared_ptr<const ReelMarkersAsset>, EqualityOptions, NoteHandler) const;
void set (Marker, Time);
@@ -62,7 +62,7 @@ public:
}
protected:
- std::string cpl_node_name (Standard) const;
+ std::string cpl_node_name (Standard) const override;
private:
std::map<Marker, Time> _markers;