diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-06-26 16:38:22 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-08 17:24:00 +0200 |
commit | 990a23d54e634ef0ab3c7ed2dd49d0f8a0111adc (patch) | |
tree | 438f486585419debf1d8fe92cf5218e5ab49c71f | |
parent | 04c82944ea3592a7c533427cee1c9cb3482a960c (diff) |
wayland: minor clang-format fixes
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r-- | src/wayland.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp index 699763e..c1c21a0 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -6,8 +6,8 @@ #include "util.h" #include <functional> -#include <memory> #include <unordered_map> +#include <memory> #include <vector> // _ _ @@ -66,7 +66,7 @@ struct registry : public wayland_proxy<struct wl_registry> { // \__,_|_|___/ .__/|_|\__,_|\__, | // |_| |___/ struct display { - std::unique_ptr<struct wl_display, void(*)(struct wl_display *)> d; + std::unique_ptr<struct wl_display, void (*)(struct wl_display *)> d; struct registry r; display(); |