diff options
| author | oldmud0 <3421260-oldmud0@users.noreply.gitlab.com> | 2019-01-21 02:49:00 +0000 |
|---|---|---|
| committer | oldmud0 <3421260-oldmud0@users.noreply.gitlab.com> | 2019-01-21 02:49:00 +0000 |
| commit | 9008ec8d9d41e8ce523ecad5ad310fed2dfb3d8c (patch) | |
| tree | 14f88091f4e65c24550fb06565a42e34d7ae1e5c | |
| parent | 4860be3cdf27662a27bc732ddf120b0301aa0663 (diff) | |
Remove constexpr from aoapplication.h
| -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..e6980308 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; } + int get_release() const { return RELEASE; } + int get_major_version() const { return MAJOR_VERSION; } + int get_minor_version() const { return MINOR_VERSION; } QString get_version_string(); /////////////////////////////////////////// |
