summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-23 21:12:20 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-23 21:12:20 +0000
commita43561b06b7084c58e1711960495c277f90241fb (patch)
treeeb3d568c38a941a9d0afeb3213f8ddce4a09bd57
parentf29ded5e18839961e56d61d8203ba3ae4c2bd0fb (diff)
downloadATCD-a43561b06b7084c58e1711960495c277f90241fb.tar.gz
(CORBA::LongLong): use ACE_BIG_ENDIAN instead of TAO_WORDS_BIGENDIAN.
-rw-r--r--TAO/tao/corbacom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/corbacom.h b/TAO/tao/corbacom.h
index 6f265d99278..311fda4f5cf 100644
--- a/TAO/tao/corbacom.h
+++ b/TAO/tao/corbacom.h
@@ -253,11 +253,11 @@ public:
// application can cope with the loss of range, it can define
// conversion operators itself.
# define NONNATIVE_LONGLONG
-# if defined (TAO_WORDS_BIGENDIAN)
+# if defined (ACE_BIG_ENDIAN)
struct LongLong { Long h, l; };
# else
struct LongLong { Long l, h; };
-# endif /* !TAO_WORDS_BIGENDIAN */
+# endif /* ! ACE_BIG_ENDIAN */
# endif /* no native 64 bit integer type */
typedef LongLong &LongLong_out; // out type for long long