mirror of
https://github.com/glest/glest-source.git
synced 2025-08-13 11:54:00 +02:00
Fixed warning of potential infinite recursion
This commit is contained in:
@@ -655,7 +655,7 @@ namespace streflop {
|
|||||||
return isgreater(x, y);
|
return isgreater(x, y);
|
||||||
}
|
}
|
||||||
inline bool isgreaterequalf(Simple x, Simple y) {
|
inline bool isgreaterequalf(Simple x, Simple y) {
|
||||||
return isgreaterequalf(x, y);
|
return isgreaterequal(x, y);
|
||||||
}
|
}
|
||||||
inline bool islessf(Simple x, Simple y) {
|
inline bool islessf(Simple x, Simple y) {
|
||||||
return isless(x, y);
|
return isless(x, y);
|
||||||
|
Reference in New Issue
Block a user