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/ppSim/src/ppSim.h

    r23465 r23487  
    6767} ppSimGalaxy;
    6868
    69 ppSimStar *ppSimStarAlloc ();
    70 ppSimGalaxy *ppSimGalaxyAlloc ();
     69ppSimStar *ppSimStarAlloc(void);
     70ppSimGalaxy *ppSimGalaxyAlloc(void);
    7171
    7272/// Parse command-line arguments
     
    136136
    137137// add a bad CTE region
    138 bool ppSimBadCTE(psImage *image,        // Signal image, modified and returned
    139                 const pmConfig *config // configuration
     138bool ppSimBadCTE(psImage *image,        // Signal image, modified and returned
     139                const pmConfig *config // configuration
    140140  );
    141141
     
    189189double ppSimRandomGaussian (const psRandom *rnd, double mean, double sigma);
    190190double ppSimRandomGaussianNorm (const psRandom *rnd);
    191 void ppSimRandomGaussianFree();
     191void ppSimRandomGaussianFree(void);
    192192
    193193bool ppSimPhotomFiles (pmConfig *config, pmFPAfile *fakeFile, pmFPAfile *forceFile);
Note: See TracChangeset for help on using the changeset viewer.