summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Reference.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-02-21 16:54:03 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-02-21 16:54:03 +0000
commit77f1dc4b62c2d50040ecf8a76dfce1d979c9d15a (patch)
treecf4408e91e0f56bef835a1dc07b40ad27904b017 /cppe/src/IceE/Reference.cpp
parentRemoved OutgoingM (diff)
downloadice-77f1dc4b62c2d50040ecf8a76dfce1d979c9d15a.tar.bz2
ice-77f1dc4b62c2d50040ecf8a76dfce1d979c9d15a.tar.xz
ice-77f1dc4b62c2d50040ecf8a76dfce1d979c9d15a.zip
Removed OutgoingM
Diffstat (limited to 'cppe/src/IceE/Reference.cpp')
-rw-r--r--cppe/src/IceE/Reference.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp
index 234ec78dd71..702f27e2210 100644
--- a/cppe/src/IceE/Reference.cpp
+++ b/cppe/src/IceE/Reference.cpp
@@ -365,26 +365,26 @@ IceInternal::Reference::operator<(const Reference& r) const
IceInternal::Reference::Reference(const InstancePtr& inst, const CommunicatorPtr& com, const Identity& ident,
const Context& ctx, const string& fs, Mode md, bool sec) :
+ _hashInitialized(false),
_instance(inst),
_communicator(com),
_mode(md),
_secure(sec),
_identity(ident),
_context(ctx),
- _facet(fs),
- _hashInitialized(false)
+ _facet(fs)
{
}
IceInternal::Reference::Reference(const Reference& r) :
+ _hashInitialized(false),
_instance(r._instance),
_communicator(r._communicator),
_mode(r._mode),
_secure(r._secure),
_identity(r._identity),
_context(r._context),
- _facet(r._facet),
- _hashInitialized(false)
+ _facet(r._facet)
{
}