summaryrefslogtreecommitdiffstats
path: root/src/wayland.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-06-27 09:23:43 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit2dbb276974558e1e40f3169a8f4ca5d6100fc633 (patch)
treeefcefb01d0fe4aae415b6dda9365370cf24584ae /src/wayland.hpp
parent88666c08dd76d09596aa9906f39d466c45d5979e (diff)
wayland: removed unnecessary destructors
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r--src/wayland.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp
index 60a045b..40b18b0 100644
--- a/src/wayland.hpp
+++ b/src/wayland.hpp
@@ -50,7 +50,6 @@ struct registry : public wayland_proxy<struct wl_registry> {
std::unordered_map<std::string, binder> bindings;
registry(struct wl_display *d);
- ~registry();
void add_global_handler(char const *iface, binder bind);
@@ -70,7 +69,6 @@ struct display {
struct registry r;
display();
- ~display();
bool ok() const;
void roundtrip();
int dispatch();
@@ -245,7 +243,6 @@ struct controller : public wayland_proxy<struct ivi_controller> {
void execute_pending();
controller(struct wl_registry *r, uint32_t name, uint32_t version);
- ~controller() override;
// Requests
void commit_changes() const { ivi_controller_commit_changes(this->proxy); }