Changeset 12527 for issm/trunk-jpl/src/c/shared/Numerics/isnan.cpp
- Timestamp:
- 06/25/12 12:10:34 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Numerics/isnan.cpp
r12476 r12527 2 2 #ifdef _INTEL_WIN_ 3 3 4 int isnan(IssmDouble x){ 5 if (x!=x)return 1; 6 else return 0; 4 int isnan(IssmPDouble x){ 5 return (x!=x)?1:0; 7 6 } 8 7 #endif
Note:
See TracChangeset
for help on using the changeset viewer.