Skip to content

Commit 57707b5

Browse files
Dawn Perchikzygoloid
authored andcommitted
LWG3051 Floating point classifications were inadvertently changed in P0175
1 parent 3362a7f commit 57707b5

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

source/numerics.tex

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10289,49 +10289,49 @@
1028910289
int fpclassify(double x);
1029010290
int fpclassify(long double x);
1029110291

10292-
int isfinite(float x);
10293-
int isfinite(double x);
10294-
int isfinite(long double x);
10292+
bool isfinite(float x);
10293+
bool isfinite(double x);
10294+
bool isfinite(long double x);
1029510295

10296-
int isinf(float x);
10297-
int isinf(double x);
10298-
int isinf(long double x);
10296+
bool isinf(float x);
10297+
bool isinf(double x);
10298+
bool isinf(long double x);
1029910299

10300-
int isnan(float x);
10301-
int isnan(double x);
10302-
int isnan(long double x);
10300+
bool isnan(float x);
10301+
bool isnan(double x);
10302+
bool isnan(long double x);
1030310303

10304-
int isnormal(float x);
10305-
int isnormal(double x);
10306-
int isnormal(long double x);
10304+
bool isnormal(float x);
10305+
bool isnormal(double x);
10306+
bool isnormal(long double x);
1030710307

10308-
int signbit(float x);
10309-
int signbit(double x);
10310-
int signbit(long double x);
10308+
bool signbit(float x);
10309+
bool signbit(double x);
10310+
bool signbit(long double x);
1031110311

10312-
int isgreater(float x, float y);
10313-
int isgreater(double x, double y);
10314-
int isgreater(long double x, long double y);
10312+
bool isgreater(float x, float y);
10313+
bool isgreater(double x, double y);
10314+
bool isgreater(long double x, long double y);
1031510315

10316-
int isgreaterequal(float x, float y);
10317-
int isgreaterequal(double x, double y);
10318-
int isgreaterequal(long double x, long double y);
10316+
bool isgreaterequal(float x, float y);
10317+
bool isgreaterequal(double x, double y);
10318+
bool isgreaterequal(long double x, long double y);
1031910319

10320-
int isless(float x, float y);
10321-
int isless(double x, double y);
10322-
int isless(long double x, long double y);
10320+
bool isless(float x, float y);
10321+
bool isless(double x, double y);
10322+
bool isless(long double x, long double y);
1032310323

10324-
int islessequal(float x, float y);
10325-
int islessequal(double x, double y);
10326-
int islessequal(long double x, long double y);
10324+
bool islessequal(float x, float y);
10325+
bool islessequal(double x, double y);
10326+
bool islessequal(long double x, long double y);
1032710327

10328-
int islessgreater(float x, float y);
10329-
int islessgreater(double x, double y);
10330-
int islessgreater(long double x, long double y);
10328+
bool islessgreater(float x, float y);
10329+
bool islessgreater(double x, double y);
10330+
bool islessgreater(long double x, long double y);
1033110331

10332-
int isunordered(float x, float y);
10333-
int isunordered(double x, double y);
10334-
int isunordered(long double x, long double y);
10332+
bool isunordered(float x, float y);
10333+
bool isunordered(double x, double y);
10334+
bool isunordered(long double x, long double y);
1033510335

1033610336
// \ref{sf.cmath}, mathematical special functions
1033710337

0 commit comments

Comments
 (0)