Use override specifier where apropriate.

- fixed using clang-tidy's modernize-use-override check.
This commit is contained in:
Jim Evins
2017-03-21 23:36:39 -04:00
parent 9f9ba345cf
commit e09936233a
38 changed files with 202 additions and 202 deletions
+2 -2
View File
@@ -42,14 +42,14 @@ namespace glabels
private:
TextTsv();
TextTsv( const TextTsv* merge );
virtual ~TextTsv();
~TextTsv() override;
/////////////////////////////////
// Object duplication
/////////////////////////////////
public:
TextTsv* clone() const;
TextTsv* clone() const override;
/////////////////////////////////