From 5ea3eab8fc702c2693166fa89bb2012ed430cc24 Mon Sep 17 00:00:00 2001 From: S6066 Date: Wed, 12 Oct 2016 18:24:51 +0200 Subject: [PATCH] Oops, added an indent --- include/Nazara/Math/Vector4.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Nazara/Math/Vector4.inl b/include/Nazara/Math/Vector4.inl index 565b4c0c3..94b46872d 100644 --- a/include/Nazara/Math/Vector4.inl +++ b/include/Nazara/Math/Vector4.inl @@ -1107,7 +1107,7 @@ Nz::Vector4 operator*(T scale, const Nz::Vector4& vec) template Nz::Vector4 operator/(T scale, const Nz::Vector4& vec) { - #if NAZARA_MATH_SAFE + #if NAZARA_MATH_SAFE if (NumberEquals(vec.x, F(0.0)) || NumberEquals(vec.y, F(0.0)) || NumberEquals(vec.z, F(0.0)) || NumberEquals(vec.w, F(0.0))) { Nz::String error("Division by zero");