From 9f5eb22dd62ef25f6f8288a9fc5e3a82d3229aaa Mon Sep 17 00:00:00 2001 From: Gerd von Egidy Date: Thu, 24 Jan 2013 14:24:43 +0100 Subject: [PATCH] make code compile with newer gcc versions too --- src/i2n_configdata.hpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/i2n_configdata.hpp b/src/i2n_configdata.hpp index 9a56deb..b2c8088 100644 --- a/src/i2n_configdata.hpp +++ b/src/i2n_configdata.hpp @@ -737,13 +737,13 @@ class GroupedKeyValueData GroupDataType& operator[](const GroupKeyType& key) { - return getValueRef(key); + return inherited::getValueRef(key); } // eo operator [](const groupKey&) const GroupDataType& operator[](const GroupKeyType& key) const { - return getConstValueRef(key); + return inherited::getConstValueRef(key); } // eo operator [](const groupKey&) const @@ -770,7 +770,7 @@ class GroupedKeyValueData { return false; } - return getConstValueRef(group_key).hasKey(key); + return inherited::getConstValueRef(group_key).hasKey(key); } // eo hasKey(const GroupKeyType&,const KeyType&) const -- 1.7.1