Skip to content

Commit 0f5a571

Browse files
Merge pull request #3378 from kevinbackhouse/fix-3376
Make methods non-virtual
2 parents 4654b52 + 72c5d97 commit 0f5a571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/exiv2/image.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,11 @@ class EXIV2API Image {
197197
@param size number of bytes to append
198198
@param bTestValid - tests that iccProfile contains credible data
199199
*/
200-
virtual void appendIccProfile(const uint8_t* bytes, size_t size, bool bTestValid);
200+
void appendIccProfile(const uint8_t* bytes, size_t size, bool bTestValid);
201201
/*!
202202
@brief Throw an exception if the size at the beginning of the iccProfile isn't correct.
203203
*/
204-
virtual void checkIccProfile();
204+
void checkIccProfile();
205205
/*!
206206
@brief Erase iccProfile. the profile is not removed from
207207
the actual image until the writeMetadata() method is called.

0 commit comments

Comments
 (0)