Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit da7e0a3

Browse files
committed
Formatting
1 parent d10d262 commit da7e0a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

System/Vector.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ namespace RTE {
3232
/// <param name="inputX">Float defining the initial X value of this Vector.</param>
3333
/// <param name="inputY">Float defining the initial Y value of this Vector.</param>
3434
Vector(const float inputX, const float inputY) :
35-
m_X(inputX),
36-
m_Y(inputY) {};
35+
m_X(inputX),
36+
m_Y(inputY) {};
3737

3838
/// <summary>
3939
/// Copy constructor method used to instantiate a Vector object identical to an already existing one.
@@ -370,7 +370,7 @@ namespace RTE {
370370
/// <param name="lhs">A Vector reference as the left hand side operand.</param>
371371
/// <param name="rhs">A Vector reference as the right hand side operand.</param>
372372
/// <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); }
374374

375375
/// <summary>
376376
/// A stream insertion operator for sending a Vector to an output stream.

0 commit comments

Comments
 (0)