summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-07-25 18:27:37 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-07-25 18:27:37 +0000
commit713d2cac9a047e66ab27cfe6ca48d75da96224b1 (patch)
tree7af6873538c4f34776cf5fd52baf64b53f067fc9
parent1e34a8cc41e0dea58de83c3abe462b1c60f4300b (diff)
downloadATCD-713d2cac9a047e66ab27cfe6ca48d75da96224b1.tar.gz
ChanglogTag: Mon Jul 25 18:28:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/Basic_Types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Basic_Types.h b/ace/Basic_Types.h
index ee804960785..4e93efd5847 100644
--- a/ace/Basic_Types.h
+++ b/ace/Basic_Types.h
@@ -506,7 +506,8 @@ typedef ptrdiff_t ptr_arith_t;
#if defined (ACE_LACKS_UNSIGNEDLONGLONG_T)
long long data_;
#else
- struct _ace_hi_lo_correct_endian
+ public:
+ struct ace_hi_lo_correct_endian
{
# if defined (ACE_BIG_ENDIAN)
/// High 32 bits.
@@ -522,9 +523,10 @@ typedef ptrdiff_t ptr_arith_t;
ACE_UINT32 hi_;
# endif /* ! ACE_BIG_ENDIAN */
};
+ private:
union
{
- struct _ace_hi_lo_correct_endian data_;
+ struct ace_hi_lo_correct_endian data_;
/// To ensure alignment on 8-byte boundary.
/**