aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2019-08-06 01:11:53 +0200
committeroldmud0 <oldmud0@users.noreply.github.com>2019-08-05 18:42:19 -0500
commit05debed60ba1adaa4f454010164caf554248a29e (patch)
treeeb2b0370c480868ce2e02bbe549a952447c04c90
parent223f69d67a888e82fb305b19e51e9d81fffadc59 (diff)
removed meaningless modifiers (see https://software.intel.com/en-us/articles/cdiag858)
-rw-r--r--include/aoapplication.h6
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();
///////////////////////////////////////////