diff options
| author | BossCode45 <boss@tehbox.org> | 2025-06-28 00:44:40 +1200 |
|---|---|---|
| committer | BossCode45 <boss@tehbox.org> | 2025-07-24 12:48:21 +1200 |
| commit | 3e4cad0bfd36536ffc870d16a6e26aac5049dd0b (patch) | |
| tree | 3f0ecd09760267a108f5d97e43d31cfb8741cf55 /src/BMPImage.h | |
| parent | 078b4e08fe3bccb7424dac76e158bf8bf48a182d (diff) | |
| download | tehimage-3e4cad0bfd36536ffc870d16a6e26aac5049dd0b.tar.gz tehimage-3e4cad0bfd36536ffc870d16a6e26aac5049dd0b.zip | |
fixup: Updated some stuff
Mainly just cleaning up code
Diffstat (limited to 'src/BMPImage.h')
| -rw-r--r-- | src/BMPImage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/BMPImage.h b/src/BMPImage.h index 697c72d..52db0b1 100644 --- a/src/BMPImage.h +++ b/src/BMPImage.h @@ -8,7 +8,8 @@ class BMPImage : public Image { private: public: - template<std::derived_from<Image> T> BMPImage(const T& other) : Image(other) { } + // template<std::derived_from<Image> T> BMPImage(const T& other) : Image(other) { } + BMPImage(const Image& other) : Image(other) {} int readFromFile(std::string filename) override; int writeToFile(std::string filename) override; |
