include/Spectre/Math/Vector2.inl: minor fix.
This commit is contained in:
parent
0c76494939
commit
d1b613058d
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ inline bool operator>(const Vector2<T>& a, const Vector2<T>& b)
|
|||
template<typename T>
|
||||
inline bool operator>=(const Vector2<T>& a, const Vector2<T>& b)
|
||||
{
|
||||
return a.x >= b.x && a.y >= b.y
|
||||
return a.x >= b.x && a.y >= b.y;
|
||||
}
|
||||
|
||||
// ------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue