summaryrefslogtreecommitdiff
path: root/TAO/tests/Codec/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Codec/client.cpp')
-rw-r--r--TAO/tests/Codec/client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/tests/Codec/client.cpp b/TAO/tests/Codec/client.cpp
index 957febf140f..a5048d39e31 100644
--- a/TAO/tests/Codec/client.cpp
+++ b/TAO/tests/Codec/client.cpp
@@ -2,6 +2,7 @@
#include "tao/IOP_CodecC.h"
#include "testC.h"
+#include "ace/OS_NS_string.h"
#include "ace/Log_Msg.h"
@@ -40,7 +41,7 @@ verify_data (Foo::Bar *original, Foo::Bar *extracted)
if (original->A != extracted->A
|| original->B != extracted->B
|| original->C != extracted->C
- || ACE_OS_String::strcmp (original->D, extracted->D) != 0)
+ || ACE_OS::strcmp (original->D, extracted->D) != 0)
return -1;
return 0;