From 330e635c2ce2ea0650226f56559cf1068df0320d Mon Sep 17 00:00:00 2001 From: Martin Reddy Date: Tue, 13 Oct 2009 16:04:09 +0000 Subject: DEV-40417: Fixed a few cases where gcc 4.x can emit warnings suggesting the use of extra parentheses. --- indra/llmath/tests/v2math_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/llmath/tests/v2math_test.cpp') diff --git a/indra/llmath/tests/v2math_test.cpp b/indra/llmath/tests/v2math_test.cpp index 748cdf913a..456faf7c0c 100644 --- a/indra/llmath/tests/v2math_test.cpp +++ b/indra/llmath/tests/v2math_test.cpp @@ -379,7 +379,7 @@ namespace tut x1 = 1.0f, y1 = 2.0f, x2 = 1.0f, y2 = 3.2234f; vec2.setVec(x1, y1); vec3.setVec(x2, y2); - ensure("2:operator < failed", (FALSE == vec3 < vec2)); + ensure("2:operator < failed", (FALSE == (vec3 < vec2))); } template<> template<> -- cgit v1.2.3