diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-01-27 12:15:40 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-01-27 12:15:40 -0330 |
commit | 34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d (patch) | |
tree | 7959aaf7446c21985e01b48b0d5fdf282a5f8f35 /cpp/src/Ice/LocatorInfo.cpp | |
parent | Fixed bug 3672 - test/Ice/udp memory limit exception (diff) | |
download | ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.tar.bz2 ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.tar.xz ice-34e0afaa23ff0d3dfbf59115c20c5145d0b5b71d.zip |
Fixed some BCC compile errors
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.cpp')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/LocatorInfo.cpp b/cpp/src/Ice/LocatorInfo.cpp index a2cc09ff1af..4271e3ceaab 100644 --- a/cpp/src/Ice/LocatorInfo.cpp +++ b/cpp/src/Ice/LocatorInfo.cpp @@ -34,7 +34,7 @@ class ObjectRequest : public LocatorInfo::Request, public Ice::AMI_Locator_findO { public: - ObjectRequest(const LocatorInfoPtr& locatorInfo, const ReferencePtr& ref) : Request(locatorInfo, ref) + ObjectRequest(const LocatorInfoPtr& locatorInfo, const ReferencePtr& ref) : LocatorInfo::Request(locatorInfo, ref) { assert(ref->isWellKnown()); } @@ -73,7 +73,7 @@ class AdapterRequest : public LocatorInfo::Request, public Ice::AMI_Locator_find { public: - AdapterRequest(const LocatorInfoPtr& locatorInfo, const ReferencePtr& ref) : Request(locatorInfo, ref) + AdapterRequest(const LocatorInfoPtr& locatorInfo, const ReferencePtr& ref) : LocatorInfo::Request(locatorInfo, ref) { assert(ref->isIndirect() && !ref->isWellKnown()); } |