# HG changeset patch # User Sebastien Jodogne # Date 1548260833 -3600 # Node ID 1525539ce5d9aea190c5d2531ef84b3d2f1f9b0d # Parent 441a472bfd934deea5a959cfcddf03909f2f0926 fix clang warnings diff -r 441a472bfd93 -r 1525539ce5d9 MySQL/Plugins/MySQLIndex.h --- 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 {