summaryrefslogtreecommitdiff
path: root/ace/Active_Map_Manager_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Active_Map_Manager_T.h')
-rw-r--r--ace/Active_Map_Manager_T.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/Active_Map_Manager_T.h b/ace/Active_Map_Manager_T.h
index 34b5a475652..2ab3d35e1e6 100644
--- a/ace/Active_Map_Manager_T.h
+++ b/ace/Active_Map_Manager_T.h
@@ -53,22 +53,22 @@ public:
typedef REVERSE_ITERATOR reverse_iterator;
// = Initialization and termination methods.
- /// Initialize a <Active_Map_Manager> with the ACE_DEFAULT_MAP_SIZE.
+ /// Initialize a Active_Map_Manager with the ACE_DEFAULT_MAP_SIZE.
ACE_Active_Map_Manager (ACE_Allocator *alloc = 0);
- /// Initialize a <Active_Map_Manager> with @a size entries.
+ /// Initialize a Active_Map_Manager with @a size entries.
ACE_Active_Map_Manager (size_t size,
ACE_Allocator *alloc = 0);
- /// Close down a <Active_Map_Manager> and release dynamically
+ /// Close down a Active_Map_Manager and release dynamically
/// allocated resources.
~ACE_Active_Map_Manager (void);
- /// Initialize a <Active_Map_Manager> with size @a length.
+ /// Initialize a Active_Map_Manager with size @a length.
int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *alloc = 0);
- /// Close down a <Active_Map_Manager> and release dynamically
+ /// Close down a Active_Map_Manager and release dynamically
/// allocated resources.
int close (void);
@@ -84,8 +84,8 @@ public:
/**
* Reserves a slot in the internal structure and returns the key and
* a pointer to the value. User should place their @a value into
- * <*internal_value>. This method is useful in reducing the number
- * of copies required in some cases. Note that <internal_value> is
+ * @a internal_value. This method is useful in reducing the number
+ * of copies required in some cases. Note that @a internal_value is
* only a temporary pointer and will change when the map resizes.
* Therefore, the user should use the pointer immediately and not
* hold on to it.
@@ -126,8 +126,8 @@ public:
/**
* Locate @a value associated with @a key. The value is returned via
- * <internal_value> and hence a copy is saved. Note that
- * <internal_value> is only a temporary pointer and will change when
+ * @a internal_value and hence a copy is saved. Note that
+ * @a internal_value is only a temporary pointer and will change when
* the map resizes. Therefore, the user should use the pointer
* immediately and not hold on to it.
*/
@@ -148,8 +148,8 @@ public:
/**
* Locate @a value associated with @a key. The value is returned via
- * <internal_value> and hence a copy is saved. Note that
- * <internal_value> is only a temporary pointer and will change when
+ * @a internal_value and hence a copy is saved. Note that
+ * @a internal_value is only a temporary pointer and will change when
* the map resizes or when this slot is reused. Therefore, the user
* should use the pointer immediately and not hold on to it.
*/