diff options
| author | David Skoland <davidskoland@gmail.com> | 2019-08-06 01:11:53 +0200 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2019-08-05 18:42:19 -0500 |
| commit | 05debed60ba1adaa4f454010164caf554248a29e (patch) | |
| tree | eb2b0370c480868ce2e02bbe549a952447c04c90 | |
| parent | 223f69d67a888e82fb305b19e51e9d81fffadc59 (diff) | |
removed meaningless modifiers (see https://software.intel.com/en-us/articles/cdiag858)
| -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 67f9a0d5..af43cf3c 100644 --- a/include/aoapplication.h +++ b/include/aoapplication.h @@ -95,9 +95,9 @@ public: //////////////////versioning/////////////// - 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; } + 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(); /////////////////////////////////////////// |
