summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Outgoing.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-01-23 19:19:01 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-01-23 19:19:01 +0000
commitd790b03c9b6bf55c77c0a56b9d5cff1dbea69e56 (patch)
treed280176e3210db8c4f6e13df9cf0d602aadc4efb /cppe/src/IceE/Outgoing.cpp
parentChanges to support "cpp:array" in IceE (and eventually Ice). (diff)
downloadice-d790b03c9b6bf55c77c0a56b9d5cff1dbea69e56.tar.bz2
ice-d790b03c9b6bf55c77c0a56b9d5cff1dbea69e56.tar.xz
ice-d790b03c9b6bf55c77c0a56b9d5cff1dbea69e56.zip
Changes to support "cpp:array"
Diffstat (limited to 'cppe/src/IceE/Outgoing.cpp')
-rw-r--r--cppe/src/IceE/Outgoing.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp
index dda1f5ee1e3..85931be7a3f 100644
--- a/cppe/src/IceE/Outgoing.cpp
+++ b/cppe/src/IceE/Outgoing.cpp
@@ -73,13 +73,12 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st
//
if(_reference->getFacet().empty())
{
- _os.write(vector<string>());
+ _os.write(static_cast<string*>(0), static_cast<string*>(0));
}
else
{
- vector<string> facetPath;
- facetPath.push_back(_reference->getFacet());
- _os.write(facetPath);
+ string facet = _reference->getFacet();
+ _os.write(&facet, &facet + 1);
}
_os.write(operation);