summaryrefslogtreecommitdiff
path: root/ace/Containers.h
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-25 18:53:25 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-25 18:53:25 +0000
commit2de029a0c71afbbd9e0234b4c9b6cdada1963f64 (patch)
tree11cbb925eac874154e45694fe915e91460e6da25 /ace/Containers.h
parentd241bbb87733f8b2d1af08fc22fa0dbe823f6e75 (diff)
downloadATCD-2de029a0c71afbbd9e0234b4c9b6cdada1963f64.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Containers.h')
-rw-r--r--ace/Containers.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Containers.h b/ace/Containers.h
index 6f94ce9ecce..3d5b260ca97 100644
--- a/ace/Containers.h
+++ b/ace/Containers.h
@@ -601,12 +601,12 @@ public:
// = Classic queue operations.
T *insert_tail (T *new_item);
- // Adds <new_item> to the tail of the list. Returns 0 on success,
- // -1 on failure.
+ // Adds <new_item> to the tail of the list. Returns the new item
+ // that was inserted.
T *insert_head (T *new_item);
- // Adds <new_item> to the head of the list. Returns 0 on success,
- // -1 on failure.
+ // Adds <new_item> to the head of the list.Returns the new item that
+ // was inserted.
T* delete_head (void);
// Removes and returns the first <item> in the list. Returns