default initializations
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
7aaf6414f2
commit
e7977554e2
@ -93,9 +93,6 @@ TiffBinaryArray::TiffBinaryArray(uint16_t tag, IfdId group, const ArraySet* arra
|
||||
}
|
||||
|
||||
TiffBinaryElement::TiffBinaryElement(uint16_t tag, IfdId group) : TiffEntryBase(tag, group) {
|
||||
elDef_.idx_ = 0;
|
||||
elDef_.tiffType_ = ttUndefined;
|
||||
elDef_.count_ = 0;
|
||||
}
|
||||
|
||||
TiffDirectory::~TiffDirectory() {
|
||||
|
||||
@ -1491,7 +1491,7 @@ class TiffBinaryElement : public TiffEntryBase {
|
||||
|
||||
private:
|
||||
// DATA
|
||||
ArrayDef elDef_; //!< The array element definition
|
||||
ArrayDef elDef_{0, ttUndefined, 0}; //!< The array element definition
|
||||
ByteOrder elByteOrder_{invalidByteOrder}; //!< Byte order to read/write the element
|
||||
|
||||
}; // class TiffBinaryElement
|
||||
|
||||
Loading…
Reference in New Issue
Block a user