diff --git a/include/Nazara/Math/Vector3.inl b/include/Nazara/Math/Vector3.inl index e67c251d6..d79e4b818 100644 --- a/include/Nazara/Math/Vector3.inl +++ b/include/Nazara/Math/Vector3.inl @@ -435,7 +435,7 @@ namespace Nz * \param scale The scalar to multiply components with */ template - constexpr Vector3 Vector3::operator*(T scale) const + constexpr Vector3 Vector3::operator*(T scale) const { return Vector3(x * scale, y * scale, z * scale); } diff --git a/include/Nazara/Utility/VertexStruct.hpp b/include/Nazara/Utility/VertexStruct.hpp index 060ee71bd..afcb72728 100644 --- a/include/Nazara/Utility/VertexStruct.hpp +++ b/include/Nazara/Utility/VertexStruct.hpp @@ -10,6 +10,7 @@ #include #include #include +#include namespace Nz {