From 55774b48e4718763214ed9e52faa52dc2622aef0 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 7 Jun 2018 15:26:25 +0200 Subject: Fix short vs long --- test/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/main.h') diff --git a/test/main.h b/test/main.h index 0fcd6cb76..a94e1ab41 100644 --- a/test/main.h +++ b/test/main.h @@ -359,7 +359,7 @@ template<> inline long double test_precision >() { ret inline bool test_isApprox(const short& a, const short& b) { return internal::isApprox(a, b, test_precision()); } inline bool test_isApprox(const unsigned short& a, const unsigned short& b) -{ return internal::isApprox(a, b, test_precision()); } +{ return internal::isApprox(a, b, test_precision()); } inline bool test_isApprox(const unsigned int& a, const unsigned int& b) { return internal::isApprox(a, b, test_precision()); } inline bool test_isApprox(const long& a, const long& b) -- cgit v1.2.3