summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-04-15 08:21:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-04-15 08:21:52 +0000
commit81c7a45621e946d80cedf611d4182e40e0fb1836 (patch)
tree517cc28dcd2a40bd87daf08deb44471bc40275cc
parentac161666b9bc4241656c90665395cbcf83327d2a (diff)
downloadATCD-81c7a45621e946d80cedf611d4182e40e0fb1836.tar.gz
ChangeLogTag: Mon Apr 15 10:21:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/Containers_T.h10
4 files changed, 20 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c57173398d..873818f43fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Apr 15 10:22:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Containers_T.h:
+ Doxygen-ized some of the comments
+
Mon Apr 15 08:49:23 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Makefile.bor:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 2c57173398d..873818f43fc 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon Apr 15 10:22:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Containers_T.h:
+ Doxygen-ized some of the comments
+
Mon Apr 15 08:49:23 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Makefile.bor:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 2c57173398d..873818f43fc 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon Apr 15 10:22:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Containers_T.h:
+ Doxygen-ized some of the comments
+
Mon Apr 15 08:49:23 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Makefile.bor:
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index 71b62805720..b8188793f71 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -1291,15 +1291,15 @@ public:
ACE_ALLOC_HOOK_DECLARE;
private:
+ /// Holds the contents of the set.
struct
{
+ /// Item in the set.
T item_;
- // Item in the set.
+ /// Keeps track of whether this item is in use or not.
int is_free_;
- // Keeps track of whether this item is in use or not.
} search_structure_[ACE_SIZE];
- // Holds the contents of the set.
/// Current size of the set.
size_t cur_size_;
@@ -1478,11 +1478,11 @@ public:
private:
struct Search_Structure
{
+ /// Item in the set.
T item_;
- // Item in the set.
+ /// Keeps track of whether this item is in use or not.
int is_free_;
- // Keeps track of whether this item is in use or not.
};
/// Holds the contents of the set.