summaryrefslogtreecommitdiff
path: root/ace/ACE.inl
diff options
context:
space:
mode:
authorjohn_c <john_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-05-08 23:00:05 +0000
committerjohn_c <john_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-05-08 23:00:05 +0000
commitd1160e68b1301a8b0e120ba8da56bb2e7d4fb49e (patch)
treecf04398acb7ad9fb45311eb105d60975028bbc03 /ace/ACE.inl
parent1c3dd540264435be21072a3a69a8a8e969bd2b1a (diff)
downloadATCD-oci_wchar_refactor_post_1_5_1_branch.tar.gz
Fri May 5 14:33:29 UTC 2006 Ciju John <john_c@ociweb.com>oci_wchar_refactor_post_1_5_1_branch
Diffstat (limited to 'ace/ACE.inl')
-rw-r--r--ace/ACE.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/ACE.inl b/ace/ACE.inl
index f4e3c2e0cb2..a755557fe5c 100644
--- a/ace/ACE.inl
+++ b/ace/ACE.inl
@@ -303,7 +303,7 @@ ACE::log2 (u_long num)
return log;
}
-ACE_INLINE ACE_TCHAR
+ACE_INLINE char
ACE::nibble2hex (u_int n)
{
// Hexadecimal characters.
@@ -312,9 +312,9 @@ ACE::nibble2hex (u_int n)
// loads of warnings when inlining.
// problem (incorrect warning leftover from older GNU) has been reported as
// TSR to Windriver.
- const ACE_TCHAR hex_chars[] = ACE_LIB_TEXT ("0123456789abcdef");
+ const char hex_chars[] = "0123456789abcdef";
#else
- static const ACE_TCHAR hex_chars[] = ACE_LIB_TEXT ("0123456789abcdef");
+ static const char hex_chars[] = "0123456789abcdef";
#endif
// @@ UNICODE does this work?