diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-15 19:57:02 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:59 +0200 |
commit | 019337908e37ffee9b624b313e9d7f885bff9781 (patch) | |
tree | 7f8ba5e8b12fff7723b1af2317c3fba52c0c7011 /src/engine/data/vector2.cpp | |
parent | 741a6008e806abb8e5aaa8f8fb91827fa97ece9d (diff) |
style: change braced list & bracket style
Diffstat (limited to 'src/engine/data/vector2.cpp')
-rw-r--r-- | src/engine/data/vector2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/data/vector2.cpp b/src/engine/data/vector2.cpp index 6d8ebad..0f203d0 100644 --- a/src/engine/data/vector2.cpp +++ b/src/engine/data/vector2.cpp @@ -25,7 +25,7 @@ void Vector2::set_y(Vector2::Value y) noexcept auto Vector2::to_direction(const Vector2 &direction, Vector2::Value amount) const noexcept -> Vector2 { - return *this + (direction * Vector2({ .x = amount, .y = amount })); + return *this + (direction * Vector2({.x = amount, .y = amount})); } auto Vector2::operator+=(const Vector2 &rhs) noexcept -> const Vector2 & |