From 05debed60ba1adaa4f454010164caf554248a29e Mon Sep 17 00:00:00 2001 From: David Skoland Date: Tue, 6 Aug 2019 01:11:53 +0200 Subject: [PATCH] removed meaningless modifiers (see https://software.intel.com/en-us/articles/cdiag858) --- include/aoapplication.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/aoapplication.h b/include/aoapplication.h index 67f9a0d..af43cf3 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(); ///////////////////////////////////////////