diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-08 22:35:09 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-09 17:14:25 +0100 |
commit | 1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7 (patch) | |
tree | 74cff7036d1ecfb4df5a79a7ca68bedce5bea47e /src/resources/imageset.h | |
parent | 0ca05c54dd814f294617eda286ef175f01baa542 (diff) | |
download | mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.gz mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.bz2 mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.tar.xz mana-1b041ecccfbe44a4f50ffc086e3996e2b6eea4f7.zip |
C++11: Use default member initializers
This patch is not exhaustive.
Diffstat (limited to 'src/resources/imageset.h')
-rw-r--r-- | src/resources/imageset.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/imageset.h b/src/resources/imageset.h index c73e7e37..8f377369 100644 --- a/src/resources/imageset.h +++ b/src/resources/imageset.h @@ -52,7 +52,7 @@ class ImageSet : public Resource int getHeight() const { return mHeight; } using size_type = std::vector<Image *>::size_type; - Image* get(size_type i) const; + Image *get(size_type i) const; size_type size() const { return mImages.size(); } @@ -71,10 +71,10 @@ class ImageSet : public Resource private: std::vector<Image*> mImages; - int mHeight; /**< Height of the images in the image set. */ int mWidth; /**< Width of the images in the image set. */ - int mOffsetX; - int mOffsetY; + int mHeight; /**< Height of the images in the image set. */ + int mOffsetX = 0; + int mOffsetY = 0; }; #endif |