diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-10-05 13:00:30 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-10-05 13:00:30 +0000 |
commit | 285daebf692a818feb7d4e6fa13d51e84fec83fc (patch) | |
tree | adfce0bc4041bae11a2564d379cafcf9240665aa /ace/CDR_Base.h | |
parent | c10eb707702590d9927a0e43f84b7548e7215e9f (diff) | |
download | ATCD-285daebf692a818feb7d4e6fa13d51e84fec83fc.tar.gz |
ChangeLogTag: Wed Oct 5 12:48:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/CDR_Base.h')
-rw-r--r-- | ace/CDR_Base.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/CDR_Base.h b/ace/CDR_Base.h index c8f500192c4..7f19e1aaad9 100644 --- a/ace/CDR_Base.h +++ b/ace/CDR_Base.h @@ -133,7 +133,7 @@ public: /** * Compute the size of the smallest buffer that can contain at least - * <minsize> bytes. + * @a minsize bytes. * To understand how a "best fit" is computed look at the * algorithm in the code. * Basically the buffers grow exponentially, up to a certain point, @@ -144,14 +144,15 @@ public: static size_t first_size (size_t minsize); /// Compute not the smallest, but the second smallest buffer that - /// will fir <minsize> bytes. + /// will fir @a minsize bytes. static size_t next_size (size_t minsize); /** - * Increase the capacity of mb to contain at least <minsize> bytes. - * If <minsize> is zero the size is increased by an amount at least - * large enough to contain any of the basic IDL types. Return -1 on - * failure, 0 on success. + * Increase the capacity of mb to contain at least @a minsize bytes. + * If @a minsize is zero the size is increased by an amount at least + * large enough to contain any of the basic IDL types. + * @retval -1 Failure + * @retval 0 Success. */ static int grow (ACE_Message_Block *mb, size_t minsize); @@ -189,8 +190,7 @@ public: typedef ACE_UINT32 ULong; typedef ACE_UINT64 ULongLong; -# if (defined (_MSC_VER) && (_MSC_VER >= 900)) \ - || (defined (__BORLANDC__) && (__BORLANDC__ >= 0x530)) +# if (defined (_MSC_VER)) || (defined (__BORLANDC__)) typedef __int64 LongLong; # elif ACE_SIZEOF_LONG == 8 && !defined(_CRAYMPP) typedef long LongLong; |