Remove constexpr from aoapplication.h

This commit is contained in:
oldmud0 2019-01-21 02:49:00 +00:00
parent 4860be3cdf
commit 9008ec8d9d

View File

@ -94,9 +94,9 @@ public:
//////////////////versioning/////////////// //////////////////versioning///////////////
constexpr int get_release() const { return RELEASE; } int get_release() const { return RELEASE; }
constexpr int get_major_version() const { return MAJOR_VERSION; } int get_major_version() const { return MAJOR_VERSION; }
constexpr int get_minor_version() const { return MINOR_VERSION; } int get_minor_version() const { return MINOR_VERSION; }
QString get_version_string(); QString get_version_string();
/////////////////////////////////////////// ///////////////////////////////////////////