summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Containers/Sets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/APG/Containers/Sets.cpp')
-rw-r--r--ACE/examples/APG/Containers/Sets.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/APG/Containers/Sets.cpp b/ACE/examples/APG/Containers/Sets.cpp
index 3eaec6f7bec..ac097da5519 100644
--- a/ACE/examples/APG/Containers/Sets.cpp
+++ b/ACE/examples/APG/Containers/Sets.cpp
@@ -21,7 +21,7 @@ private:
int SetExample::run (void)
{
- ACE_TRACE (ACE_TEXT ("SetExample::run"));
+ ACE_TRACE ("SetExample::run");
ACE_ASSERT (!this->runBoundedSet ());
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n# of live objects %d\n"),
@@ -36,7 +36,7 @@ int SetExample::run (void)
// Listing 1 code/ch05
int SetExample::runBoundedSet ()
{
- ACE_TRACE (ACE_TEXT ("SetExample::runBoundedSet"));
+ ACE_TRACE ("SetExample::runBoundedSet");
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Using a bounded set\n")));
ACE_Bounded_Set<DataElement> bset (100);
@@ -86,7 +86,7 @@ int SetExample::runBoundedSet ()
// Listing 2 code/ch05
int SetExample::runUnboundedSet ()
{
- ACE_TRACE (ACE_TEXT ("SetExample::runUnboundedSet"));
+ ACE_TRACE ("SetExample::runUnboundedSet");
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Using an unbounded set.\n")));
ACE_Unbounded_Set<DataElement*> uset;
for (int m = 0; m < 100; m++)