mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[escher] Un-delete the default move constructor on View (used by member
list initialization)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user