[escher] Un-delete the default move constructor on View (used by member

list initialization)
This commit is contained in:
Émilie Feral
2018-09-10 10:05:15 +02:00
parent aaf5cee967
commit ff8022c1dc

View File

@@ -27,8 +27,8 @@ class View {
public:
View();
virtual ~View();
View(View&& other) = default;
View(const View& other) = delete;
View(View&& other) = delete;
View& operator=(const View& other) = delete;
View& operator=(View&& other) = delete;
void resetSuperview();