summaryrefslogtreecommitdiff
path: root/TAO/tao/Exception.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 22:15:48 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 22:15:48 +0000
commit92bd555295175550eb76ef72c867a2f20117f8c9 (patch)
treed656d7b52111f56082f136023da415228d5bbc54 /TAO/tao/Exception.cpp
parent642f07c3e1e45ce24fe49d48d7004f5bae1b8922 (diff)
downloadATCD-92bd555295175550eb76ef72c867a2f20117f8c9.tar.gz
Fixed codeset includes and identifiers.
Diffstat (limited to 'TAO/tao/Exception.cpp')
-rw-r--r--TAO/tao/Exception.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index bda2d5c1907..2dad92c703d 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -9,6 +9,10 @@
#include "tao/Any.h"
#include "tao/CDR.h"
+#if defined(ACE_MVS)
+#include "ace/Codeset_IBM1047.h"
+#endif /* ACE_MVS */
+
#if !defined (__ACE_INLINE__)
# include "tao/Exception.i"
#endif /* __ACE_INLINE__ */
@@ -451,7 +455,7 @@ TAO_Exceptions::make_unknown_user_typecode (CORBA::TypeCode_ptr &tcp,
// are stored in ISO8859 form, the problem is that this hack does
// not scale as more native sets have to be supported
- ACE_Codeset_IBM1047_ISO8859 translator;
+ ACE_IBM1047_ISO8859 translator;
TAO_OutputCDR stream (0,
ACE_CDR_BYTE_ORDER,
TAO_Exceptions::global_allocator_,
@@ -512,7 +516,7 @@ TAO_Exceptions::make_standard_typecode (CORBA::TypeCode_ptr &tcp,
// are stored in ISO8859 form, the problem is that this hack does
// not scale as more native sets have to be supported
- ACE_Codeset_IBM1047_ISO8859 translator;
+ ACE_IBM1047_ISO8859 translator;
TAO_OutputCDR stream (buffer, buflen,
ACE_CDR_BYTE_ORDER,
TAO_Exceptions::global_allocator_,