IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 27, 2017, 2:48:35 AM (9 years ago)
Author:
eugene
Message:

latest gcc more strict about implicit casting to floats -- need to prevent sending int type to float argument without explicit casting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/relphot/src/StarOps.c

    r39636 r40019  
    948948        xlist[N] = catalog[i].secfilt[Nsecfilt*j+Nsec].M;
    949949        value    = catalog[i].secfilt[Nsecfilt*j+Nsec].Mchisq;
    950         if (isnan(value)) continue;
     950        if (isnan((double)(value))) continue;
    951951        ylist[N] = value;
    952952        N++;
Note: See TracChangeset for help on using the changeset viewer.