Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1278)

Unified Diff: lily/tuplet-iterator.cc

Issue 551320043: Issue 5650: Use C++11 "override" keyword (Closed)
Patch Set: Compile with -Werror=suggest-override, when supported Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lily/tuplet-engraver.cc ('k') | lily/tweak-engraver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lily/tuplet-iterator.cc
diff --git a/lily/tuplet-iterator.cc b/lily/tuplet-iterator.cc
index bd0ed5886d32c55f7e02c3e6ed1f60ed3548e8c4..73532246a98e48e8e16a99f18e74512066f5da86 100644
--- a/lily/tuplet-iterator.cc
+++ b/lily/tuplet-iterator.cc
@@ -36,13 +36,13 @@ class Tuplet_iterator : public Music_wrapper_iterator
public:
DECLARE_SCHEME_CALLBACK (constructor, ());
/* construction */
- DECLARE_CLASSNAME (Tuplet_iterator);
+ OVERRIDE_CLASS_NAME (Tuplet_iterator);
Tuplet_iterator ();
protected:
- virtual void process (Moment m);
- virtual void construct_children ();
- virtual void derived_mark () const;
- virtual Moment pending_moment () const;
+ void process (Moment m) override;
+ void construct_children () override;
+ void derived_mark () const override;
+ Moment pending_moment () const override;
Music *create_event (Direction d);
« no previous file with comments | « lily/tuplet-engraver.cc ('k') | lily/tweak-engraver.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b