summaryrefslogtreecommitdiffstats
path: root/src/app.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app.hpp b/src/app.hpp
index 1926ca4..90ab42c 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -56,11 +56,13 @@ struct App {
typedef std::pair<char const *, std::function<void()>> name_task_pair;
std::vector<name_task_pair> pending;
- App(wl::display *d);
+ explicit App(wl::display *d);
~App();
App(App const &) = delete;
App &operator=(App const &) = delete;
+ App(App &&) = delete;
+ App &operator=(App &&) = delete;
int init();
int dispatch_events();