Skip to content

Commit 63a0012

Browse files
chore: clang tidy errors
1 parent ec817d6 commit 63a0012

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

math/vector2.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "vector2.hpp"
2-
#include "cassert"
2+
#include <cassert>
33

4-
vector2::vector2(float x, float y) : x(x), y(y){};
5-
vector2::vector2(const vector2 &vector) : x(vector.x), y(vector.y) {}
4+
vector2::vector2(float x, float y) : x(x), y(y) {};
5+
vector2::vector2(const vector2 &vector) : x(vector.x), y(vector.y) {};
66

77
vector2 vector2::operator+(const vector2 &v) const {
88
return vector2(x + v.x, y + v.y);

0 commit comments

Comments
 (0)