summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp')
-rw-r--r--TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp b/TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp
index 3f4780aa82e..becb6e8d3d1 100644
--- a/TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp
+++ b/TAO/TAO_IDL/util/utl_tmpl/utl_idlist.cpp
@@ -94,10 +94,10 @@ UTL_IdList::last_component (void)
void
UTL_IdList::dump (ACE_OSTREAM_TYPE &o)
{
- long first = true;
- long second = false;
+ long first = I_TRUE;
+ long second = I_FALSE;
- for (UTL_IdListActiveIterator (this); !i.is_done (); i.next ())
+ for (UTL_IdListActiveIterator (this); !i.is_done (); i.next ())
{
if (!first)
{
@@ -105,20 +105,20 @@ UTL_IdList::dump (ACE_OSTREAM_TYPE &o)
}
else if (second)
{
- first = second = false;
+ first = second = I_FALSE;
}
i.item ()->dump (o);
- if (first)
+ if (first)
{
if (ACE_OS::strcmp (i.item ()->get_string (), "::") != 0)
{
- first = false;
+ first = I_FALSE;
}
else
{
- second = true;
+ second = I_TRUE;
}
}
}