summaryrefslogtreecommitdiff
path: root/ace/Containers_T.h
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-22 15:02:03 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-22 15:02:03 +0000
commit00b77264215cc33ac6f2e3089480dc96eef89220 (patch)
tree0d33d5c37d818ad60e135930c33b9cc64230ed98 /ace/Containers_T.h
parentf7b87fe6a32197b64ce2dc4618ac5710a00f1cda (diff)
downloadATCD-00b77264215cc33ac6f2e3089480dc96eef89220.tar.gz
ChangeLogTag:Mon Jan 22 15:56:42 2001 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Containers_T.h')
-rw-r--r--ace/Containers_T.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index 6bde6d71662..15a01f644f3 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -1168,7 +1168,7 @@ public:
/// Prefix advance.
ACE_Unbounded_Set_Iterator<T>& operator++ (void);
- /// Returns a reference to the interal element <this> is pointing to.
+ /// Returns a reference to the internal element <this> is pointing to.
T& operator* (void);
/// Check if two iterators point to the same position
@@ -1609,6 +1609,9 @@ public:
/// Dump the state of an object.
void dump (void) const;
+ /// Returns a reference to the internal element <this> is pointing to.
+ T& operator* (void);
+
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -1628,7 +1631,7 @@ private:
* that allows duplicates. This class template requires that <
* operator semantics be defined for the parameterized type <T>, but
* does not impose any restriction on how that ordering operator is
- * implemented.
+ * implemented.
*/
template <class T>
class ACE_Ordered_MultiSet