IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 11:13:48 AM (20 years ago)
Author:
Paul Price
Message:

Synchronising with SDRS, and cleaning up:

  • Replaced is_psType() with PS_ASSERT_PTR() throughout psLib.
  • Changed "char *" to "psString" where appropriate in psDB and a few other places (to indicate pointers on the PS memory system).
  • Removed psLogArguments and psTraceArguments (functionality in psArgumentVerbosity).
  • Renamed psMetadataLookupMD to psMetadataLookupMetadata (it was about time...). Similarly with the psPolynomial?D{From,To}MD functions.
  • Removed psMetadataRemove() since it is ambiguous about what's removed --- use psMetadataRemove{Key,Index}.
  • psArrayRemoveByPos --> psArrayRemoveIndex
  • psArrayRemove --> psArrayRemoveData
File:
1 edited

Legend:

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

    r8232 r9538  
    33#include "psMemory.h"
    44#include "psError.h"
    5 
     5#include "psAssert.h"
    66#include "psRegion.h"
    77
     
    109109bool psMemCheckRegion(psPtr ptr)
    110110{
    111     if (!is_psType(ptr)) {
    112         return false;
    113     }
     111    PS_ASSERT_PTR(ptr, false);
    114112    return ( psMemGetDeallocator(ptr) == (psFreeFunc)regionFree );
    115113}
Note: See TracChangeset for help on using the changeset viewer.