summaryrefslogtreecommitdiff
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
commitc5e154bca9c6aabe14856f8b4208ed6f882afd94 (patch)
tree11cbb925eac874154e45694fe915e91460e6da25
parenteca8dae82c8d2d8e0746f6a116b41dae549f20c1 (diff)
downloadATCD-c5e154bca9c6aabe14856f8b4208ed6f882afd94.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a3
-rw-r--r--ace/Containers.h8
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index 9fe42b9ae60..4fa5b86e08c 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -4,6 +4,9 @@ Sat Apr 25 11:55:01 1998 Alexander Babu Arulanthu <alex@merengue.cs.wustl.edu>
comments.(<class T>, the parameter for this class should have
T* next_ and T* prev_ fields in it.
+ * ace/Containers.h (class ACE_Double_Linked_List): Corrected the
+ documentation for the insert_head and insert_tail functions.
+
Fri Apr 24 22:36:37 1998 David L. Levine <levine@cs.wustl.edu>
* ace/Service_Config.cpp (process_directive): added
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