Fixed warning of potential infinite recursion

This commit is contained in:
mathusummut
2018-06-11 00:08:03 +02:00
parent 73d28db062
commit d2216b8143

View File

@@ -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);