Skip to content

Commit

Permalink
[imageCache] cosmetic change in member variable initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
mugulmd authored and fabiencastan committed Feb 15, 2023
1 parent 384096e commit 0013202
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/aliceVision/image/caching.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ class CacheValue
int memorySize() const;

private:
std::shared_ptr<Image<unsigned char>> imgUChar = nullptr;
std::shared_ptr<Image<float>> imgFloat = nullptr;
std::shared_ptr<Image<RGBColor>> imgRGB = nullptr;
std::shared_ptr<Image<RGBfColor>> imgRGBf = nullptr;
std::shared_ptr<Image<RGBAColor>> imgRGBA = nullptr;
std::shared_ptr<Image<RGBAfColor>> imgRGBAf = nullptr;
std::shared_ptr<Image<unsigned char>> imgUChar;
std::shared_ptr<Image<float>> imgFloat;
std::shared_ptr<Image<RGBColor>> imgRGB;
std::shared_ptr<Image<RGBfColor>> imgRGBf;
std::shared_ptr<Image<RGBAColor>> imgRGBA;
std::shared_ptr<Image<RGBAfColor>> imgRGBAf;

};

Expand Down

0 comments on commit 0013202

Please sign in to comment.