Remove unused operators in Image (#4267)

This commit is contained in:
nerix
2022-12-28 20:24:14 +01:00
committed by GitHub
parent 757c7c781e
commit 448c8622e7
3 changed files with 3 additions and 19 deletions
+2 -2
View File
@@ -76,8 +76,8 @@ public:
int height() const;
bool animated() const;
bool operator==(const Image &image) const;
bool operator!=(const Image &image) const;
bool operator==(const Image &image) = delete;
bool operator!=(const Image &image) = delete;
private:
Image();