changeset 111:1525539ce5d9

fix clang warnings
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Jan 2019 17:27:13 +0100
parents 441a472bfd93
children f73050ad32b4 7cac47fd4d09
files MySQL/Plugins/MySQLIndex.h
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
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
     {