IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 13, 2011, 5:08:04 PM (15 years ago)
Author:
eugene
Message:

replacing deprecated finite with isfinite

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20110213/psModules/src/objects/pmPhotObj.c

    r29004 r30892  
    6767        return false;
    6868    }
    69     if (!finite(source->peak->xf)) {
     69    if (!isfinite(source->peak->xf)) {
    7070        psError(PS_ERR_UNKNOWN, true, "NAN peak coordinate");
    7171        return false;
    7272    }
    73     if (!finite(source->peak->yf)) {
     73    if (!isfinite(source->peak->yf)) {
    7474        psError(PS_ERR_UNKNOWN, true, "NAN peak coordinate");
    7575        return false;
Note: See TracChangeset for help on using the changeset viewer.