diff --git a/include/blt/math/vectors.h b/include/blt/math/vectors.h index 9646086..15232f1 100755 --- a/include/blt/math/vectors.h +++ b/include/blt/math/vectors.h @@ -267,6 +267,11 @@ namespace blt { return true; } + template + inline constexpr bool operator!=(const vec& left, const vec& right) { + return !(left == right); + } + template inline constexpr bool operator&&(const vec& left, const vec& right) { for (uint32_t i = 0; i < size; i++)