# HG changeset patch # User Benjamin Golinvaux # Date 1565710230 -7200 # Node ID 4a593397b11c8216f2069a2a30495768db7e81aa # Parent e8c81a5582d650048cb4f69e0b34119c209b44af Fixed clang warning about missing 'override' diff -r e8c81a5582d6 -r 4a593397b11c Framework/Loaders/OrthancSeriesVolumeProgressiveLoader.h --- 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; }; }