diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-09-22 15:44:21 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-09-22 15:44:21 +0000 |
commit | 47327141aada621537d7bdf08919777aff7bbbd2 (patch) | |
tree | e533e93d871674811453e058def7b934f672d98a /cpp/src/Ice/LocatorInfo.cpp | |
parent | make depend (diff) | |
download | ice-47327141aada621537d7bdf08919777aff7bbbd2.tar.bz2 ice-47327141aada621537d7bdf08919777aff7bbbd2.tar.xz ice-47327141aada621537d7bdf08919777aff7bbbd2.zip |
Various fixs for Sun compiles Added Makefile for test/Ice/hold
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.cpp')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/LocatorInfo.cpp b/cpp/src/Ice/LocatorInfo.cpp index 89e1e7c05a6..6639ad9d355 100644 --- a/cpp/src/Ice/LocatorInfo.cpp +++ b/cpp/src/Ice/LocatorInfo.cpp @@ -459,6 +459,6 @@ IceInternal::LocatorInfo::trace(const string& msg, const char* sep = endpoints.size() > 1 ? ":" : ""; ostringstream o; transform(endpoints.begin(), endpoints.end(), ostream_iterator<string>(o, sep), - Ice::constMemFun(&EndpointI::toString)); + Ice::constMemFun(&Endpoint::toString)); out << "endpoints = " << o.str(); } |