summaryrefslogtreecommitdiffstats
path: root/src/wayland.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 12:04:28 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:30:50 +0200
commit343c700f2e1003855dfdeb4e2e7d102dc8bbe696 (patch)
tree5460dc02b588eafd151f9c5e35bce04a1d336b90 /src/wayland.hpp
parentadd2152e7561ea456068dd73ebbdc480d13e1015 (diff)
clang formatting
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r--src/wayland.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp
index 85423fd..9ad5656 100644
--- a/src/wayland.hpp
+++ b/src/wayland.hpp
@@ -147,7 +147,7 @@ struct rect {
static const constexpr rect full_rect = rect{-1, -1, 0, 0};
-inline bool operator == (struct rect a, struct rect b) {
+inline bool operator==(struct rect a, struct rect b) {
return a.w == b.w && a.h == b.h && a.x == b.x && a.y == b.y;
}