static is not applicable to constants.

This commit is contained in:
Kolan Sh 2016-12-07 18:58:01 +03:00
parent df7c235630
commit 28da8546f2
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[CCode (cheader_filename = "config.h")]
namespace Config {
static const int VERSION_MAJOR;
static const int VERSION_MINOR;
static const int VERSION_PATCH;
const int VERSION_MAJOR;
const int VERSION_MINOR;
const int VERSION_PATCH;
}