summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-24 13:31:13 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-24 13:31:13 +0000
commit16dddb97d9374d7d3415c8e7f00df211a0e90b83 (patch)
tree3596dae5ae2e2e9821a729f51698a03a379387f3 /ace
parent3613932322a2d631e7fbf327df8503e271861ba0 (diff)
downloadATCD-16dddb97d9374d7d3415c8e7f00df211a0e90b83.tar.gz
ChangeLogTag:Tue Apr 24 06:28:00 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/ace_wchar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ace/ace_wchar.h b/ace/ace_wchar.h
index cd158cc4022..2e46e5531ca 100644
--- a/ace/ace_wchar.h
+++ b/ace/ace_wchar.h
@@ -6,11 +6,10 @@
*
* $Id$
*
- * @author Darrell Brunsch
+ * @author Darrell Brunsch <brunsch@uci.edu>
*/
//=============================================================================
-
#ifndef ACE_WCHAR_H
#define ACE_WCHAR_H
@@ -86,7 +85,11 @@ using std::size_t;
// Define the unicode/wchar related macros correctly
# if !defined (ACE_TEXT_WIDE)
+# if defined (VXWORKS)
+# define ACE_TEXT_WIDE_I(STRING) STRING
+# else /* VXWORKS */
# define ACE_TEXT_WIDE_I(STRING) L##STRING
+#endif /* VXWORKS */
# define ACE_TEXT_WIDE(STRING) ACE_TEXT_WIDE_I (STRING)
# endif /* ACE_TEXT_WIDE */