Cross Reference: isinf.h
xref
: /
inkscape
/
src
/
display
/
nr-filter-flood.cpp
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
isinf.h revision aecee8c4b2aead4b1ae1049bc020aae1f2c7066a
#
ifndef
__ISINF_H__
#
define
__ISINF_H__
/*
* Fix for missing std::isnormal with
SOLARIS8
/
GCC3.2
*/
#
if
defined
(
SOLARIS
)
#
include
<
ieeefp.h
>
#
define
isinf
(x) ((
fpclass
(x) ==
FP_NINF
) || (
fpclass
(x) ==
FP_PINF
))
#
elif
defined
(
__APPLE__
) &&
__GNUC__
==
3
#
define
isinf
(x)
__isinf
(x)
#
endif
#
endif
/* __ISINF_H__ */