mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-20 20:34:17 -04:00
delete copy constructor and assignment operator of some internal classes
they are unused, but if anyone would use them things would go wrong, so protect us from it
This commit is contained in:
@ -112,6 +112,9 @@ private:
|
||||
{
|
||||
delete[] name;
|
||||
}
|
||||
|
||||
Layer(const Layer &) = delete;
|
||||
Layer &operator=(const Layer &) = delete;
|
||||
};
|
||||
|
||||
/*!
|
||||
|
Reference in New Issue
Block a user