File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class DngOpcodes::FixBadPixelsConstant final : public DngOpcodes::DngOpcode {
8181
8282 void apply (RawImageData* ri) override {
8383 MutexLocker guard (&ri->mBadPixelMutex );
84- auto rawU16 = dynamic_cast <RawImageDataU16*>(ri);
84+ auto * rawU16 = dynamic_cast <RawImageDataU16*>(ri);
8585 assert (rawU16);
8686 const CroppedArray2DRef<uint16_t > img (
8787 rawU16->getU16DataAsCroppedArray2DRef ());
Original file line number Diff line number Diff line change @@ -228,7 +228,6 @@ class RawImage {
228228 using storage_t = std::vector<frame_ptr_t >;
229229 using const_iterator = storage_t ::const_iterator;
230230
231- public:
232231 [[nodiscard]] std::shared_ptr<RawImageData>
233232 get (storage_t ::size_type pos) const {
234233 return data.at (pos);
You can’t perform that action at this time.
0 commit comments