summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceGrid/Cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Cache.h b/cpp/src/IceGrid/Cache.h
index da799248a0f..65cd980d667 100644
--- a/cpp/src/IceGrid/Cache.h
+++ b/cpp/src/IceGrid/Cache.h
@@ -141,7 +141,7 @@ public:
getAll(const std::string& expr)
{
IceUtil::Mutex::Lock sync(*this);
- return getMatchingKeys<std::map<std::string,TPtr> >(_entries, expr);
+ return getMatchingKeys<std::map<std::string,TPtr> >(Cache<std::string, T>::_entries, expr);
}
};