summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2011-05-19 23:57:26 +0200
committerJose <jose@zeroc.com>2011-05-19 23:57:26 +0200
commitaffa739e7ce8f4000e035009fa52067426349c7b (patch)
treea9d6f3dc8bd9b1f5fcda0c0cdae70892d31e0a31 /cpp/test/Ice/operations/TestI.cpp
parentfixing bug in java/test/Glacier2/sessionHelper (diff)
downloadice-affa739e7ce8f4000e035009fa52067426349c7b.tar.bz2
ice-affa739e7ce8f4000e035009fa52067426349c7b.tar.xz
ice-affa739e7ce8f4000e035009fa52067426349c7b.zip
5102 - test/Ice/operations don't compile with BCC 2010
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rwxr-xr-xcpp/test/Ice/operations/TestI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp
index 0f2e0b94c39..ca9837ea1b4 100755
--- a/cpp/test/Ice/operations/TestI.cpp
+++ b/cpp/test/Ice/operations/TestI.cpp
@@ -18,28 +18,28 @@ bool
MyDerivedClassI::ice_isA(const std::string& id, const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_isA(id, current);
+ return Test::MyDerivedClass::ice_isA(id, current);
}
void
MyDerivedClassI::ice_ping(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- MyDerivedClass::ice_ping(current);
+ Test::MyDerivedClass::ice_ping(current);
}
std::vector<std::string>
MyDerivedClassI::ice_ids(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_ids(current);
+ return Test::MyDerivedClass::ice_ids(current);
}
const std::string&
MyDerivedClassI::ice_id(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_id(current);
+ return Test::MyDerivedClass::ice_id(current);
}
void