Opened 17 years ago
Closed 17 years ago
#1365 closed bug (fixed)
broken isinf in math.h
Reported by: | kaliber | Owned by: | axeld |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | - General | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
There is:
# define isinf(x) \ (sizeof(value) == sizeof(float) ? __isinff(value) \ : sizeof(value) == sizeof(double) ? __isinf(value) \ : __isinfl(value))
but should be:
# define isinf(value) \ (sizeof(value) == sizeof(float) ? __isinff(value) \ : sizeof(value) == sizeof(double) ? __isinf(value) \ : __isinfl(value))
Note:
See TracTickets
for help on using tickets.
Thanks, fixed in hrev21849.