clang-format: update with latest
Pick up the latest .clang-format from the docs repository.
Change-Id: I205c7f9abd502a02a480b489446f3db37f303e05
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/rect.hpp b/rect.hpp
index aa7bf89..8106143 100644
--- a/rect.hpp
+++ b/rect.hpp
@@ -19,8 +19,6 @@
struct Rect
{
int x, y, w, h; // X, Y, Width, Height
- Rect(int _x, int _y, int _w, int _h) : x(_x), y(_y), w(_w), h(_h)
- {}
- Rect() : x(0), y(0), w(1), h(1)
- {}
+ Rect(int _x, int _y, int _w, int _h) : x(_x), y(_y), w(_w), h(_h) {}
+ Rect() : x(0), y(0), w(1), h(1) {}
};
\ No newline at end of file