summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-05-08 07:16:04 +0000
committerMichi Henning <michi@zeroc.com>2003-05-08 07:16:04 +0000
commit14416a5349f73de58dfa7177ffeed4063a284aeb (patch)
tree1c174246000d8ce93bf32224ce8636c53d8d20b8 /cpp/src
parentAdded missing ICE_API directive. (diff)
downloadice-14416a5349f73de58dfa7177ffeed4063a284aeb.tar.bz2
ice-14416a5349f73de58dfa7177ffeed4063a284aeb.tar.xz
ice-14416a5349f73de58dfa7177ffeed4063a284aeb.zip
Fixed incorrect scope for passing function pointer for __patch__ObjectPtr.
(Looks like a gcc bug -- the code should never have compiled as it was.)
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp
index 68124dea864..6e6330682e0 100644
--- a/cpp/src/Ice/Object.cpp
+++ b/cpp/src/Ice/Object.cpp
@@ -241,7 +241,7 @@ Ice::Object::__read(::IceInternal::BasicStream* __is, bool __rid)
__is->read(s);
pair<const string, ObjectPtr> v(s, ObjectPtr());
_activeFacetMapHint = _activeFacetMap.insert(_activeFacetMapHint, v);
- __is->read(::__patch__ObjectPtr, &_activeFacetMapHint->second);
+ __is->read(::Ice::__patch__ObjectPtr, &_activeFacetMapHint->second);
}
__is->endReadSlice();