summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/util/utl_global.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/util/utl_global.cpp')
-rw-r--r--TAO/TAO_IDL/util/utl_global.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp
index b86e04cdf9f..9b9af5b4753 100644
--- a/TAO/TAO_IDL/util/utl_global.cpp
+++ b/TAO/TAO_IDL/util/utl_global.cpp
@@ -2077,7 +2077,7 @@ void
IDL_GlobalData::original_local_name (Identifier *local_name)
{
const char *lname = local_name->get_string ();
-
+
// Remove _cxx_ if:
// 1. it occurs and
// 2. it occurs at the beginning of the string and
@@ -2085,10 +2085,10 @@ IDL_GlobalData::original_local_name (Identifier *local_name)
if (ACE_OS::strstr (lname, "_cxx_") == lname)
{
TAO_IDL_CPP_Keyword_Table cpp_key_tbl;
-
+
unsigned int len =
static_cast<unsigned int> (ACE_OS::strlen (lname + 5));
-
+
const TAO_IDL_CPP_Keyword_Entry *entry =
cpp_key_tbl.lookup (lname + 5, len);
@@ -2098,4 +2098,5 @@ IDL_GlobalData::original_local_name (Identifier *local_name)
local_name->replace_string (tmp.c_str ());
}
}
-} \ No newline at end of file
+}
+