IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 14, 2006, 12:05:34 PM (20 years ago)
Author:
Paul Price
Message:

Removing const from psRegionIsNaN: it's passed by value, so doesn't need it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psRegion.c

    r7496 r7563  
    9696}
    9797
    98 bool inline psRegionIsNaN(const psRegion region)
     98bool inline psRegionIsNaN(psRegion region)
    9999{
    100100    return isnan(region.x0) || isnan(region.x1) || isnan(region.y0) || isnan(region.y1);
Note: See TracChangeset for help on using the changeset viewer.