This repository was archived by the owner on Jan 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ namespace RTE {
32
32
// / <param name="inputX">Float defining the initial X value of this Vector.</param>
33
33
// / <param name="inputY">Float defining the initial Y value of this Vector.</param>
34
34
Vector (const float inputX, const float inputY) :
35
- m_X (inputX),
36
- m_Y (inputY) {};
35
+ m_X (inputX),
36
+ m_Y (inputY) {};
37
37
38
38
// / <summary>
39
39
// / Copy constructor method used to instantiate a Vector object identical to an already existing one.
@@ -370,7 +370,7 @@ namespace RTE {
370
370
// / <param name="lhs">A Vector reference as the left hand side operand.</param>
371
371
// / <param name="rhs">A Vector reference as the right hand side operand.</param>
372
372
// / <returns>A boolean indicating whether the two operands are unequal or not.</returns>
373
- friend bool operator !=(const Vector &lhs, const Vector &rhs) { return !(lhs== rhs); }
373
+ friend bool operator !=(const Vector &lhs, const Vector &rhs) { return !(lhs == rhs); }
374
374
375
375
// / <summary>
376
376
// / A stream insertion operator for sending a Vector to an output stream.
You can’t perform that action at this time.
0 commit comments