Skip to content

Commit c9c2a18

Browse files
committed
remove const std::function
std::move is used. Signed-off-by: Rosen Penev <[email protected]>
1 parent a86bc38 commit c9c2a18

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/tiffvisitor_int.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -311,13 +311,13 @@ class TiffDecoder : public TiffVisitor {
311311
//@}
312312

313313
// DATA
314-
ExifData& exifData_; //!< Exif metadata container
315-
IptcData& iptcData_; //!< IPTC metadata container
316-
XmpData& xmpData_; //!< XMP metadata container
317-
TiffComponent* pRoot_; //!< Root element of the composite
318-
const FindDecoderFct findDecoderFct_; //!< Ptr to the function to find special decoding functions
319-
std::string make_; //!< Camera make, determined from the tags to decode
320-
bool decodedIptc_; //!< Indicates if IPTC has been decoded yet
314+
ExifData& exifData_; //!< Exif metadata container
315+
IptcData& iptcData_; //!< IPTC metadata container
316+
XmpData& xmpData_; //!< XMP metadata container
317+
TiffComponent* pRoot_; //!< Root element of the composite
318+
FindDecoderFct findDecoderFct_; //!< Ptr to the function to find special decoding functions
319+
std::string make_; //!< Camera make, determined from the tags to decode
320+
bool decodedIptc_; //!< Indicates if IPTC has been decoded yet
321321

322322
}; // class TiffDecoder
323323

0 commit comments

Comments
 (0)