diff transform/FeatureWriter.h @ 1580:c01cbe41aeb5 fix-static-analysis

Use override throughout
author Chris Cannam
date Mon, 26 Nov 2018 13:48:45 +0000
parents d649818fc249
children ad5f892c0c4d
line wrap: on
line diff
--- a/transform/FeatureWriter.h	Thu Nov 22 14:55:18 2018 +0000
+++ b/transform/FeatureWriter.h	Mon Nov 26 13:48:45 2018 +0000
@@ -72,7 +72,7 @@
             m_transformId(transformId)
         { }
         virtual ~FailedToOpenOutputStream() throw() { }
-        virtual const char *what() const throw() {
+        const char *what() const throw() override {
             return QString("Failed to open output stream for track id \"%1\", transform id \"%2\"")
                 .arg(m_trackId).arg(m_transformId).toLocal8Bit().data();
         }