summaryrefslogtreecommitdiff
path: root/cpp/test/IceXML/encoding/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceXML/encoding/Client.cpp')
-rw-r--r--cpp/test/IceXML/encoding/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceXML/encoding/Client.cpp b/cpp/test/IceXML/encoding/Client.cpp
index cabdc47309e..13cce11fd20 100644
--- a/cpp/test/IceXML/encoding/Client.cpp
+++ b/cpp/test/IceXML/encoding/Client.cpp
@@ -264,13 +264,13 @@ TestColor(const Ice::CommunicatorPtr& communicator)
ostringstream os;
os << header;
Ice::StreamPtr ostream = new IceXML::StreamI(communicator, os);
- ice_marshal(element, ostream, ein);
+ ::Test::ice_marshal(element, ostream, ein);
os << footer;
istringstream is(os.str());
Ice::StreamPtr istream = new IceXML::StreamI(communicator, is);
Test::Color eout;
- ice_unmarshal(element, istream, eout);
+ ::Test::ice_unmarshal(element, istream, eout);
test(ein == eout);
}