IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7563


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.

Location:
trunk/psLib/src/math
Files:
2 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);
  • trunk/psLib/src/math/psRegion.h

    r7549 r7563  
    7171
    7272// Test if any element of the region is NaN
    73 bool psRegionIsNaN(const psRegion region// Region to check
     73bool psRegionIsNaN(psRegion region// Region to check
    7474                  );
    7575
Note: See TracChangeset for help on using the changeset viewer.