From d2216b81433021dbb61ea086b25b66dad70bf892 Mon Sep 17 00:00:00 2001 From: mathusummut Date: Mon, 11 Jun 2018 00:08:03 +0200 Subject: [PATCH] Fixed warning of potential infinite recursion --- source/shared_lib/include/streflop/SMath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/include/streflop/SMath.h b/source/shared_lib/include/streflop/SMath.h index 549caa231..43853d8b8 100644 --- a/source/shared_lib/include/streflop/SMath.h +++ b/source/shared_lib/include/streflop/SMath.h @@ -655,7 +655,7 @@ namespace streflop { return isgreater(x, y); } inline bool isgreaterequalf(Simple x, Simple y) { - return isgreaterequalf(x, y); + return isgreaterequal(x, y); } inline bool islessf(Simple x, Simple y) { return isless(x, y);