diff options
author | David Robillard <d@drobilla.net> | 2020-12-14 16:49:59 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-14 16:49:59 +0100 |
commit | 2d76306c2aeb447e29b4cc93ab67ebe35b1d9d72 (patch) | |
tree | 224872fe92b6fe1688c5f3207ec04e958b1c0476 /src | |
parent | cd160070c2966448aca7f3ab1660d65a623074dc (diff) | |
download | jalv-2d76306c2aeb447e29b4cc93ab67ebe35b1d9d72.tar.gz jalv-2d76306c2aeb447e29b4cc93ab67ebe35b1d9d72.tar.bz2 jalv-2d76306c2aeb447e29b4cc93ab67ebe35b1d9d72.zip |
Explicitly delete unused special member functions
Diffstat (limited to 'src')
-rw-r--r-- | src/jalv_qt.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jalv_qt.cpp b/src/jalv_qt.cpp index 24425d6..b0381e7 100644 --- a/src/jalv_qt.cpp +++ b/src/jalv_qt.cpp @@ -77,6 +77,12 @@ public: explicit FlowLayout(int margin, int hSpacing, int vSpacing); + FlowLayout(const FlowLayout&) = delete; + FlowLayout& operator=(const FlowLayout&) = delete; + + FlowLayout(FlowLayout&&) = delete; + FlowLayout&& operator=(FlowLayout&&) = delete; + ~FlowLayout() override; void addItem(QLayoutItem* item) override; |