summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-12-02 20:01:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-12-02 20:01:24 +0000
commitc12219312c8b13a9a2555472deb4a8abe890ca7e (patch)
tree35fd742e0f7a18145148a882a95140eba6775325 /ACE/ace/Intrusive_List.h
parent5ea384624d22a0b822c9c093c32f9cab90649029 (diff)
downloadATCD-c12219312c8b13a9a2555472deb4a8abe890ca7e.tar.gz
Tue Dec 2 20:01:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Intrusive_List.h')
-rw-r--r--ACE/ace/Intrusive_List.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Intrusive_List.h b/ACE/ace/Intrusive_List.h
index 59d0c9054a8..380c07dc284 100644
--- a/ACE/ace/Intrusive_List.h
+++ b/ACE/ace/Intrusive_List.h
@@ -68,12 +68,12 @@ public:
// = Check boundary conditions.
- /// Returns 1 if the container is empty, otherwise returns 0.
- int is_empty (void) const;
+ /// Returns true if the container is empty, otherwise returns false.
+ bool is_empty (void) const;
- /// Returns 1 if the container is empty, otherwise returns 0.
+ /// Returns true if the container is empty, otherwise returns false.
/// @deprecated Use is_empty() instead.
- int empty (void) const;
+ bool empty (void) const;
/// Insert an element at the beginning of the list
void push_front (T *node);