diff MySQL/Plugins/MySQLIndex.h @ 111:1525539ce5d9

fix clang warnings
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Jan 2019 17:27:13 +0100
parents 441a472bfd93
children 4cd7e45b671e
line wrap: on
line diff
--- a/MySQL/Plugins/MySQLIndex.h	Wed Jan 23 16:28:43 2019 +0100
+++ b/MySQL/Plugins/MySQLIndex.h	Wed Jan 23 17:27:13 2019 +0100
@@ -71,11 +71,12 @@
     }
 
     virtual int64_t CreateResource(const char* publicId,
-                                   OrthancPluginResourceType type);
+                                   OrthancPluginResourceType type)
+      ORTHANC_OVERRIDE;
 
-    virtual void DeleteResource(int64_t id);
+    virtual void DeleteResource(int64_t id) ORTHANC_OVERRIDE;
 
-    virtual int64_t GetLastChangeIndex();
+    virtual int64_t GetLastChangeIndex() ORTHANC_OVERRIDE;
 
     virtual bool HasCreateInstance() const  ORTHANC_OVERRIDE
     {