From c12219312c8b13a9a2555472deb4a8abe890ca7e Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Tue, 2 Dec 2008 20:01:24 +0000 Subject: Tue Dec 2 20:01:00 UTC 2008 Johnny Willemsen --- ACE/ace/Intrusive_List.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ACE/ace/Intrusive_List.h') 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); -- cgit v1.2.1