Mercurial > hg > orthanc-stone
changeset 951:4a593397b11c toa2019081302
Fixed clang warning about missing 'override'
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 13 Aug 2019 17:30:30 +0200 |
parents | e8c81a5582d6 |
children | bf35bffd93da |
files | Framework/Loaders/OrthancSeriesVolumeProgressiveLoader.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Framework/Loaders/OrthancSeriesVolumeProgressiveLoader.h Tue Aug 13 16:03:53 2019 +0200 +++ b/Framework/Loaders/OrthancSeriesVolumeProgressiveLoader.h Tue Aug 13 17:30:30 2019 +0200 @@ -158,6 +158,7 @@ sequence of resources to be loaded from the server) is modified to take into account this request (this is done in the ExtractedSlice ctor) */ - virtual IExtractedSlice* ExtractSlice(const CoordinateSystem3D& cuttingPlane); + virtual IExtractedSlice* + ExtractSlice(const CoordinateSystem3D& cuttingPlane) ORTHANC_OVERRIDE; }; }