IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 23, 2009, 9:42:42 AM (17 years ago)
Author:
Paul Price
Message:

Functions declared as 'type function()' cause errors with the Intel compiler ('error #310: old-style parameter list (anachronism)'), which wants 'type function()'. These instances haven't caused problems yet, and I'm trying to avoid that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pswarp/src/pswarp.h

    r23195 r23487  
    7272} pswarpTransformTileArgs;
    7373
    74 pswarpTransformTileArgs *pswarpTransformTileArgsAlloc();
     74pswarpTransformTileArgs *pswarpTransformTileArgsAlloc(void);
    7575bool pswarpTransformTile (pswarpTransformTileArgs *args);
    7676
     
    8787bool pswarpMatchRange (int *minX, int *minY, int *maxX, int *maxY, pmReadout *dest, pmReadout *src);
    8888
    89 pswarpMap *pswarpMapAlloc ();
     89pswarpMap *pswarpMapAlloc (void);
    9090pswarpMapGrid *pswarpMapGridAlloc (int Nx, int Ny);
    9191
     
    111111 * define threads for this program
    112112 */
    113 bool pswarpSetThreads ();
     113bool pswarpSetThreads (void);
    114114
    115115/// Return software version
Note: See TracChangeset for help on using the changeset viewer.