From a8d60c26429c3ec899e0d7629bad8604032bf238 Mon Sep 17 00:00:00 2001 From: Mohacsi Istvan Date: Tue, 14 Sep 2021 12:19:13 +0200 Subject: [PATCH] More headers --- core-buffer/include/formats.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-buffer/include/formats.hpp b/core-buffer/include/formats.hpp index 2678b23..a7830d3 100644 --- a/core-buffer/include/formats.hpp +++ b/core-buffer/include/formats.hpp @@ -64,7 +64,7 @@ class ImageBinaryFormat { NewImageMetadata meta; std::vector 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)