aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/aoapplication.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/aoapplication.h b/include/aoapplication.h
index 44aef7a8..6c8039cc 100644
--- a/include/aoapplication.h
+++ b/include/aoapplication.h
@@ -94,9 +94,9 @@ public:
//////////////////versioning///////////////
- constexpr int get_release() const { return RELEASE; }
- constexpr int get_major_version() const { return MAJOR_VERSION; }
- constexpr int get_minor_version() const { return MINOR_VERSION; }
+ const int get_release() const { return RELEASE; }
+ const int get_major_version() const { return MAJOR_VERSION; }
+ const int get_minor_version() const { return MINOR_VERSION; }
QString get_version_string();
///////////////////////////////////////////