From 40c772341ac87110e41447379bbd2bf3db6eddcc Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 27 Dec 2013 01:30:19 +0100 Subject: [PATCH] Fixed white space --- test/gtc/gtc_ulp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/gtc/gtc_ulp.cpp b/test/gtc/gtc_ulp.cpp index e6eb6d1d..acc1a0d8 100644 --- a/test/gtc/gtc_ulp.cpp +++ b/test/gtc/gtc_ulp.cpp @@ -18,7 +18,7 @@ int test_ulp_float_dist() float A = 1.0f; - float B = glm::next_float(A); + float B = glm::next_float(A); Error += A != B ? 0 : 1; float C = glm::prev_float(B); Error += A == C ? 0 : 1; @@ -59,7 +59,7 @@ int test_ulp_double_dist() double A = 1.0; - double B = glm::next_float(A); + double B = glm::next_float(A); Error += A != B ? 0 : 1; double C = glm::prev_float(B); Error += A == C ? 0 : 1;