From 3e4cad0bfd36536ffc870d16a6e26aac5049dd0b Mon Sep 17 00:00:00 2001 From: BossCode45 Date: Sat, 28 Jun 2025 00:44:40 +1200 Subject: fixup: Updated some stuff Mainly just cleaning up code --- src/BMPImage.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/BMPImage.h') 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 T> BMPImage(const T& other) : Image(other) { } + // template 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; -- cgit v1.2.3