summaryrefslogtreecommitdiff
path: root/ace/Containers_T.h
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
commit8a30729dc5a0364cbfb2750c94e13015ada77784 (patch)
tree517d13a21fce9eefd531d325e4edb5ba94f70e58 /ace/Containers_T.h
parent6cc42ca0d9f466c92dd2d6d977f4bbfac9de7012 (diff)
downloadATCD-8a30729dc5a0364cbfb2750c94e13015ada77784.tar.gz
ChangeLogTag:Thu Apr 22 20:01:12 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/Containers_T.h')
-rw-r--r--ace/Containers_T.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index 15762bed32a..e4cb1333d4f 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -1967,7 +1967,7 @@ public:
* if their <size>'s are equal and all the elements from 0 .. <size>
* are equal.
*/
- int operator== (const ACE_Array<T> &s) const;
+ bool operator== (const ACE_Array<T> &s) const;
///Inequality comparison operator.
/**
@@ -1975,7 +1975,7 @@ public:
* <s> is always the complement of the boolean return value of
* <*this> == <s>.
*/
- int operator!= (const ACE_Array<T> &s) const;
+ bool operator!= (const ACE_Array<T> &s) const;
};
#if defined (__ACE_INLINE__)