clang formatting
[staging/windowmanager.git] / src / wayland.hpp
index 85423fd..9ad5656 100644 (file)
@@ -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;
 }