diff options
author | sharath <sharath@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-25 03:10:31 +0000 |
---|---|---|
committer | sharath <sharath@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-05-25 03:10:31 +0000 |
commit | 26de7176b464f1a86515f0852904d2f9d9ca1cd1 (patch) | |
tree | 15a19fa0d6ed7e2875b31504685a6daf1aedfc25 /tests/CDR_Test.cpp | |
parent | 77e675cf9beaf8ec5f03ee9b30ceb644c3be8720 (diff) | |
download | ATCD-26de7176b464f1a86515f0852904d2f9d9ca1cd1.tar.gz |
ChangeLog: Thu May 24 22:06:45 2001 Sharath R. Cholleti <sharth@cs.wustl.edu>
Diffstat (limited to 'tests/CDR_Test.cpp')
-rw-r--r-- | tests/CDR_Test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/CDR_Test.cpp b/tests/CDR_Test.cpp index 3de1f5fc06e..576c5033398 100644 --- a/tests/CDR_Test.cpp +++ b/tests/CDR_Test.cpp @@ -74,7 +74,8 @@ short_stream (void) // Basic types for output ACE_CDR::Char ch = 'A'; - ACE_CDR::WChar wch = '\xF3'; + ACE_CDR::Char wchtmp[] = {"\xF3"}; + ACE_CDR::WChar wch = *wchtmp; ACE_CString str ("Test String"); ACE_CDR::Short s = -123; ACE_CDR::UShort us = 123; |