tests file for DenseVector3i, fixed typo in hpp file

This commit is contained in:
Vladyslav Baranovskyi
2024-10-08 12:41:16 +03:00
parent b7140de190
commit 43d35d0acb
2 changed files with 81 additions and 1 deletions

View File

@@ -149,7 +149,7 @@ namespace OpenVulkano::Math
[[nodiscard]] constexpr bool operator !=(DenseVec3 rhs) const
{
return data == rhs.data;
return data != rhs.data;
}
[[nodiscard]] explicit constexpr operator Math::Vector3i() const