* BUG: Renamed IsINF to IsInf and IsNAN to IsNan for consistancy.

git-svn-id: svn://localhost/gambas/trunk@4462 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Randall Morgan 2012-02-08 13:21:31 +00:00
parent 84587a6328
commit 227a73b645

View file

@ -335,8 +335,8 @@ GB_DESC CGslDesc[] =
GB_DECLARE("GSL",0), GB_NOT_CREATABLE(),
// Number testing functions
GB_STATIC_METHOD("IsNAN", "b", GSL_ISNAN, "(x)f"),
GB_STATIC_METHOD("IsINF", "b", GSL_ISINF, "(x)f"),
GB_STATIC_METHOD("IsNan", "b", GSL_ISNAN, "(x)f"),
GB_STATIC_METHOD("IsInf", "b", GSL_ISINF, "(x)f"),
GB_STATIC_METHOD("IsFinite", "b", GSL_ISFINITE, "(x)f"),
GB_STATIC_METHOD("IsPos", "b", GSL_ISPOSITIVE, "(x)f"),
GB_STATIC_METHOD("Sign", "i", GSL_SIGNF, "(x)i"),