summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ObjectCache.h
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-01-31 16:51:40 +0100
committerJose <jose@zeroc.com>2013-01-31 16:51:40 +0100
commit4d55f11cdf22fbc23e3e7c9f4758566bd05a9471 (patch)
treef5c3071ebb27c18dae2fb2585706bd9af8dd92cf /cpp/src/IceGrid/ObjectCache.h
parentFixed ICE-4870 - optional comparison operators on C++ structs (diff)
downloadice-4d55f11cdf22fbc23e3e7c9f4758566bd05a9471.tar.bz2
ice-4d55f11cdf22fbc23e3e7c9f4758566bd05a9471.tar.xz
ice-4d55f11cdf22fbc23e3e7c9f4758566bd05a9471.zip
Xcode 4.6 - clang 4.2 updates
Diffstat (limited to 'cpp/src/IceGrid/ObjectCache.h')
-rw-r--r--cpp/src/IceGrid/ObjectCache.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ObjectCache.h b/cpp/src/IceGrid/ObjectCache.h
index 523b90f231e..7bd7a786357 100644
--- a/cpp/src/IceGrid/ObjectCache.h
+++ b/cpp/src/IceGrid/ObjectCache.h
@@ -24,7 +24,7 @@ class ObjectEntry : public IceUtil::Shared
{
public:
- ObjectEntry(ObjectCache&, const ObjectInfo&, const std::string&);
+ ObjectEntry(const ObjectInfo&, const std::string&);
Ice::ObjectPrx getProxy() const;
std::string getType() const;
std::string getApplication() const;
@@ -34,7 +34,6 @@ public:
private:
- ObjectCache& _cache;
const ObjectInfo _info;
const std::string _application;
};