summaryrefslogtreecommitdiff
path: root/ace
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 /ace
parentac161666b9bc4241656c90665395cbcf83327d2a (diff)
downloadATCD-81c7a45621e946d80cedf611d4182e40e0fb1836.tar.gz
ChangeLogTag: Mon Apr 15 10:21:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace')
-rw-r--r--ace/Containers_T.h10
1 files changed, 5 insertions, 5 deletions
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.