summaryrefslogtreecommitdiff
path: root/ACE/ace/Obstack_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2012-11-06 22:18:13 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2012-11-06 22:18:13 +0000
commitb2282f3411c390c1e531d11e5b852a9717dfdd2d (patch)
tree4f6f6070247cc3bc9096936031862c14e558c1b2 /ACE/ace/Obstack_T.h
parentc52c7847948d111e29dacb4fc045349bb73489f3 (diff)
downloadATCD-b2282f3411c390c1e531d11e5b852a9717dfdd2d.tar.gz
ChangeLogTag:Sat
Diffstat (limited to 'ACE/ace/Obstack_T.h')
-rw-r--r--ACE/ace/Obstack_T.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Obstack_T.h b/ACE/ace/Obstack_T.h
index bba7595771c..b0ed606734b 100644
--- a/ACE/ace/Obstack_T.h
+++ b/ACE/ace/Obstack_T.h
@@ -47,11 +47,11 @@ public:
/// a new string. Return -1 if fail, 0 if success.
int request (size_t len);
- /// Inserting a new ACE_CHAR_T \a c into the current building
- /// block without freezing (null terminating) the block.
- /// This function will create new chunk by checking the
- /// boundary of current Obchunk. Return
- /// the location \a c gets inserted to, or 0 if error.
+ /// Inserting a new ACE_CHAR_T \a c into the current building block
+ /// without freezing (null terminating) the block. This function
+ /// will create new chunk by checking the boundary of current
+ /// Obchunk. Return the location \a c gets inserted to, or 0 if
+ /// error.
ACE_CHAR_T *grow (ACE_CHAR_T c);
/// Inserting a new ACE_CHAR_T \a c into the current building
@@ -78,7 +78,7 @@ public:
/// in the stack is released. Otherwise, @a obj must be an address of an
/// object allocated in the stack. In this case, @a obj is released along
/// with everthing allocated in the Obstack since @a obj.
- void unwind (void* obj);
+ void unwind (void *obj);
/// "Release" the entire stack of Obchunks, putting it back on the free
/// list.
@@ -95,7 +95,7 @@ protected:
/// Search through the list of Obchunks and release them. Helper funtion
/// used by unwind.
- void unwind_i (void* obj);
+ void unwind_i (void *obj);
/// Pointer to the allocator used by this Obstack.
ACE_Allocator *allocator_strategy_;