diff options
| author | stonedDiscord <stoned@derpymail.org> | 2019-03-12 00:27:22 +0100 |
|---|---|---|
| committer | stonedDiscord <stoned@derpymail.org> | 2019-03-12 00:27:22 +0100 |
| commit | 8a23f1004027d3f3de9d97e55e9a97fd73f3eb74 (patch) | |
| tree | 36dbf3f59122545ccc7e674420da97473916deea | |
| parent | 744c100159ff7b79e01c40ec57e42d37650d139b (diff) | |
gcc didn't like that
| -rw-r--r-- | include/aoapplication.h | 6 |
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(); /////////////////////////////////////////// |
