diff transform/FeatureWriter.h @ 1586:841b2a3e606d

Merge from branch fix-static-analysis
author Chris Cannam
date Wed, 09 Jan 2019 15:24:38 +0000
parents ad5f892c0c4d
children 98339fac0faf
line wrap: on
line diff
--- a/transform/FeatureWriter.h	Wed Jan 09 14:39:50 2019 +0000
+++ b/transform/FeatureWriter.h	Wed Jan 09 15:24:38 2019 +0000
@@ -17,8 +17,8 @@
     COPYING included with this distribution for more information.
 */
 
-#ifndef _FEATURE_WRITER_H_
-#define _FEATURE_WRITER_H_
+#ifndef SV_FEATURE_WRITER_H
+#define SV_FEATURE_WRITER_H
 
 #include <string>
 #include <map>
@@ -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();
         }