More headers

This commit is contained in:
2021-09-14 12:19:13 +02:00
parent 74741cd2d6
commit a8d60c2642
+1 -1
View File
@@ -64,7 +64,7 @@ class ImageBinaryFormat {
NewImageMetadata meta;
std::vector<char> data;
ImageBinaryFormat(size_t H, size_t W, size_t D): data(H*W*D, 0) { meta.height = H; meta.width = W; };
~ImageBinaryFormat(){ std::cout << "ImageBinaryFormat destructor called!" << std::endl; }
~ImageBinaryFormat(){}
};
#pragma pack(push)