Skip to content

Commit

Permalink
Merge pull request #10 from jedbrown/jed/fix-cxx-static-const-member
Browse files Browse the repository at this point in the history
C++ does not allow static member functions to be const
  • Loading branch information
baagaard-usgs committed Jun 18, 2019
2 parents f18d34d + 89d9520 commit 30fb9f7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modulesrc/utils/SpatialdataVersion.i
Expand Up @@ -42,42 +42,42 @@ namespace spatialdata {
* @returns True if source code comes from a release?
*/
static
bool isRelease(void) const;
bool isRelease(void);

/** Get version number.
*
* @returns Version number.
*/
static
const char* version(void) const;
const char* version(void);

/** Get GIT revision.
*
* @returns GIT revision.
*/
static
const char* gitRevision(void) const;
const char* gitRevision(void);

/** Get GIT hash.
*
* @returns GIT hash.
*/
static
const char* gitHash(void) const;
const char* gitHash(void);

/** Get date of GIT revision.
*
* @returns Date of GIT revision.
*/
static
const char* gitDate(void) const;
const char* gitDate(void);

/** Get GIT branch.
*
* @returns GIT branch.
*/
static
const char* gitBranch(void) const;
const char* gitBranch(void);

/** Get Proj.4 version number.
*
Expand Down

0 comments on commit 30fb9f7

Please sign in to comment.