From 28da8546f207fd84fc1833acb55663c2aace9980 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 7 Dec 2016 18:58:01 +0300 Subject: [PATCH] static is not applicable to constants. --- config/Config.vapi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/Config.vapi b/config/Config.vapi index 24a890f..5158417 100644 --- a/config/Config.vapi +++ b/config/Config.vapi @@ -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; }