Change type of sizeDataArea_

This commit is contained in:
Kevin Backhouse 2022-07-27 22:50:07 -04:00
parent 30debd2635
commit beaee05062
No known key found for this signature in database
GPG Key ID: 9DD01852EE40366E

View File

@ -704,7 +704,7 @@ class TiffDataEntry : public TiffDataEntryBase {
private:
// DATA
byte* pDataArea_{}; //!< Pointer to the data area (never alloc'd)
uint32_t sizeDataArea_{}; //!< Size of the data area
size_t sizeDataArea_{}; //!< Size of the data area
}; // class TiffDataEntry