summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2021-06-07 23:43:19 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2021-06-07 23:43:19 -0500
commita4c5b22c20a1f1298a23d3ab57571237284b1963 (patch)
tree8ad2522b013ea2c8fd6f0dffa8e60e60342ae614 /ACE
parent85a1e615810419950f8f1280f80df9da9f5dee4d (diff)
downloadATCD-a4c5b22c20a1f1298a23d3ab57571237284b1963.tar.gz
Added WIP explicit_ints Test
And a bunch of fixes to get it to (sorta) work.
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ace/CDR_Base.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/ACE/ace/CDR_Base.h b/ACE/ace/CDR_Base.h
index 815f0e009ee..33d5bdc3739 100644
--- a/ACE/ace/CDR_Base.h
+++ b/ACE/ace/CDR_Base.h
@@ -198,7 +198,7 @@ public:
*/
//@{
typedef bool Boolean;
- typedef unsigned char Octet;
+ typedef ACE_Byte Octet;
typedef char Char;
typedef ACE_WCHAR_T WChar;
typedef ACE_INT16 Short;
@@ -207,6 +207,14 @@ public:
typedef ACE_UINT32 ULong;
typedef ACE_INT64 LongLong;
typedef ACE_UINT64 ULongLong;
+ typedef ACE_INT8 Int8;
+ typedef ACE_UINT8 Uint8;
+ typedef Short Int16;
+ typedef UShort Uint16;
+ typedef Long Int32;
+ typedef ULong Uint32;
+ typedef LongLong Int64;
+ typedef ULongLong Uint64;
# if ACE_SIZEOF_FLOAT == 4
typedef float Float;