Mercurial > hg > orthanc
changeset 4811:064d86287630
added missing ORTHANC_OVERRIDE
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 23 Nov 2021 15:03:02 +0100 |
parents | 7afbb54bd028 |
children | 6290a0b34aad |
files | OrthancFramework/Sources/SQLite/Transaction.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/SQLite/Transaction.h Tue Nov 23 09:22:11 2021 +0100 +++ b/OrthancFramework/Sources/SQLite/Transaction.h Tue Nov 23 15:03:02 2021 +0100 @@ -61,11 +61,11 @@ // Returns true when there is a transaction that has been successfully begun. bool IsOpen() const; - virtual void Begin(); + virtual void Begin() ORTHANC_OVERRIDE; - virtual void Rollback(); + virtual void Rollback() ORTHANC_OVERRIDE; - virtual void Commit(); + virtual void Commit() ORTHANC_OVERRIDE; }; } }