From 0013202dd9e448ee34afb2a6f9aa00284d3f525c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vital?= Date: Wed, 15 Feb 2023 11:54:37 +0100 Subject: [PATCH] [imageCache] cosmetic change in member variable initialization --- src/aliceVision/image/caching.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/aliceVision/image/caching.hpp b/src/aliceVision/image/caching.hpp index 8c0fca88fa..4b2fbf3d93 100644 --- a/src/aliceVision/image/caching.hpp +++ b/src/aliceVision/image/caching.hpp @@ -144,12 +144,12 @@ class CacheValue int memorySize() const; private: - std::shared_ptr> imgUChar = nullptr; - std::shared_ptr> imgFloat = nullptr; - std::shared_ptr> imgRGB = nullptr; - std::shared_ptr> imgRGBf = nullptr; - std::shared_ptr> imgRGBA = nullptr; - std::shared_ptr> imgRGBAf = nullptr; + std::shared_ptr> imgUChar; + std::shared_ptr> imgFloat; + std::shared_ptr> imgRGB; + std::shared_ptr> imgRGBf; + std::shared_ptr> imgRGBA; + std::shared_ptr> imgRGBAf; };