summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.i
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 03:06:19 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 03:06:19 +0000
commit25e3a0c84479d9807535ecee744ff579c12890ff (patch)
tree517d13a21fce9eefd531d325e4edb5ba94f70e58 /ace/Basic_Types.i
parent3c54f9635353759fb2af3785a62987827a42abb9 (diff)
downloadATCD-25e3a0c84479d9807535ecee744ff579c12890ff.tar.gz
ChangeLogTag:Thu Apr 22 20:01:12 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Basic_Types.i')
-rw-r--r--ace/Basic_Types.i24
1 files changed, 12 insertions, 12 deletions
diff --git a/ace/Basic_Types.i b/ace/Basic_Types.i
index ec6c5f2d664..5a1e323330d 100644
--- a/ace/Basic_Types.i
+++ b/ace/Basic_Types.i
@@ -40,31 +40,31 @@ ACE_U_LongLong::~ACE_U_LongLong (void)
{
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator== (const ACE_U_LongLong &n) const
{
return h_ () == n.h_ () && l_ () == n.l_ ();
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator== (const ACE_UINT32 n) const
{
return h_ () == 0 && l_ () == n;
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator!= (const ACE_U_LongLong &n) const
{
return ! (*this == n);
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator!= (const ACE_UINT32 n) const
{
return ! (*this == n);
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator< (const ACE_U_LongLong &n) const
{
return h_ () < n.h_ () ? 1
@@ -72,13 +72,13 @@ ACE_U_LongLong::operator< (const ACE_U_LongLong &n) const
: l_ () < n.l_ ();
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator< (const ACE_UINT32 n) const
{
return operator< (ACE_static_cast (const ACE_U_LongLong, n));
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator<= (const ACE_U_LongLong &n) const
{
return h_ () < n.h_ () ? 1
@@ -86,13 +86,13 @@ ACE_U_LongLong::operator<= (const ACE_U_LongLong &n) const
: l_ () <= n.l_ ();
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator<= (const ACE_UINT32 n) const
{
return operator<= (ACE_static_cast (const ACE_U_LongLong, n));
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator> (const ACE_U_LongLong &n) const
{
return h_ () > n.h_ () ? 1
@@ -100,13 +100,13 @@ ACE_U_LongLong::operator> (const ACE_U_LongLong &n) const
: l_ () > n.l_ ();
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator> (const ACE_UINT32 n) const
{
return operator> (ACE_static_cast (const ACE_U_LongLong, n));
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator>= (const ACE_U_LongLong &n) const
{
return h_ () > n.h_ () ? 1
@@ -114,7 +114,7 @@ ACE_U_LongLong::operator>= (const ACE_U_LongLong &n) const
: l_ () >= n.l_ ();
}
-ACE_INLINE int
+ACE_INLINE bool
ACE_U_LongLong::operator>= (const ACE_UINT32 n) const
{
return operator>= (ACE_static_cast (const ACE_U_LongLong, n));