From 210929751d542f98504f78dddddda96f7ed684f2 Mon Sep 17 00:00:00 2001 From: rjawor Date: Wed, 16 Jan 2019 13:15:30 +0100 Subject: [PATCH] const to the getter for total occurences count --- concordia/occurences_list.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concordia/occurences_list.hpp b/concordia/occurences_list.hpp index 8ca7267..7380eea 100644 --- a/concordia/occurences_list.hpp +++ b/concordia/occurences_list.hpp @@ -31,7 +31,7 @@ public: return _occurences; } - SUFFIX_MARKER_TYPE getTotalCount() { + SUFFIX_MARKER_TYPE getTotalCount() const { return _totalCount; }