summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Reference.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-16 20:58:14 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-16 20:58:14 +0000
commit20a85dc803ab458887bab72f8e2a6da9df7ab4f3 (patch)
tree4ee4dea384381897b2e4bf55dbb2145769e21a3b /cpp/src/Ice/Reference.cpp
parent_hash, fixes to proxy equivalence/compare operations (diff)
downloadice-20a85dc803ab458887bab72f8e2a6da9df7ab4f3.tar.bz2
ice-20a85dc803ab458887bab72f8e2a6da9df7ab4f3.tar.xz
ice-20a85dc803ab458887bab72f8e2a6da9df7ab4f3.zip
facet stuff
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r--cpp/src/Ice/Reference.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp
index 63cd658b101..59c1f322913 100644
--- a/cpp/src/Ice/Reference.cpp
+++ b/cpp/src/Ice/Reference.cpp
@@ -217,7 +217,7 @@ IceInternal::Reference::Reference(const InstancePtr& inst, const string& str) :
string es = s.substr(beg, end - beg);
EndpointPtr endp = Endpoint::endpointFromString(es);
- if(orig)
+ if (orig)
{
const_cast<vector<EndpointPtr>&>(origEndpoints).push_back(endp);
}
@@ -300,7 +300,7 @@ IceInternal::Reference::streamWrite(BasicStream* s) const
(*p)->streamWrite(s);
}
- if(endpoints == origEndpoints)
+ if (endpoints == origEndpoints)
{
s->write(true);
}
@@ -327,7 +327,7 @@ IceInternal::Reference::toString() const
s << ':' << (*p)->toString();
}
- if(endpoints != origEndpoints)
+ if (endpoints != origEndpoints)
{
s << ':';
for (p = endpoints.begin(); p != endpoints.end(); ++p)