From dc465727c14a7d7588dad8554afc08f55e769b76 Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Mon, 26 Jun 2017 13:19:21 +0200 Subject: wayland: clang-format Signed-off-by: Marcus Fritzsch --- src/wayland.hpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/wayland.hpp') diff --git a/src/wayland.hpp b/src/wayland.hpp index dc1d729..ba1effd 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -6,8 +6,8 @@ #include "util.h" #include -#include #include +#include #include // _ _ @@ -46,17 +46,17 @@ namespace wl { // |_| \___|\__, |_|___/\__|_| \__, | // |___/ |___/ struct registry : public wayland_proxy { - typedef std::function binder; - std::unordered_map bindings; + typedef std::function binder; + std::unordered_map bindings; - registry(struct wl_display *d); - ~registry(); + registry(struct wl_display *d); + ~registry(); - void add_global_handler(char const *iface, binder bind); + void add_global_handler(char const *iface, binder bind); - // Events - void global(uint32_t name, char const *iface, uint32_t v); - void global_remove(uint32_t name); + // Events + void global(uint32_t name, char const *iface, uint32_t v); + void global_remove(uint32_t name); }; // _ _ _ @@ -256,7 +256,7 @@ struct layer : public wayland_proxy, } void set_render_order(std::vector const &ro) { - struct wl_array wlro{ + struct wl_array wlro { .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]), .data = const_cast(static_cast(ro.data())) @@ -280,7 +280,7 @@ struct screen : public wayland_proxy, ivi_controller_screen_add_layer(this->proxy, l->proxy); } void set_render_order(std::vector const &ro) { - struct wl_array wlro{ + struct wl_array wlro { .size = ro.size() * sizeof(ro[0]), .alloc = ro.capacity() * sizeof(ro[0]), .data = const_cast(static_cast(ro.data())) -- cgit 1.2.3-korg