diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-05 16:02:57 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-05 16:02:57 +0000 |
commit | b55c43f66c9b187fdf3eeab2ce3bd5da8e45410f (patch) | |
tree | bbc7ec1e89e2c4be0f9bfac5e486fd39748c8e57 /cpp/src | |
parent | fixup file header comment generation to include generation details. (diff) | |
download | ice-b55c43f66c9b187fdf3eeab2ce3bd5da8e45410f.tar.bz2 ice-b55c43f66c9b187fdf3eeab2ce3bd5da8e45410f.tar.xz ice-b55c43f66c9b187fdf3eeab2ce3bd5da8e45410f.zip |
Fixed expand to return endpoint
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/UnknownEndpointI.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/Ice/UnknownEndpointI.cpp b/cpp/src/Ice/UnknownEndpointI.cpp index ed76566f37c..d2fb6bfa0a8 100644 --- a/cpp/src/Ice/UnknownEndpointI.cpp +++ b/cpp/src/Ice/UnknownEndpointI.cpp @@ -231,6 +231,7 @@ vector<EndpointIPtr> IceInternal::UnknownEndpointI::expand() const { vector<EndpointIPtr> endps; + endps.push_back(const_cast<UnknownEndpointI*>(this)); return endps; } |