summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 22:13:05 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 22:13:05 +0000
commitd79a5c9a3b359a0b1363a88566cf75c43205d1fc (patch)
tree9d493ebe86fa5a2f578e74a01cbbf192bc9bad69
parent714f72a9214abbd03579f3ce6ea07dcc23159a2e (diff)
downloadATCD-d79a5c9a3b359a0b1363a88566cf75c43205d1fc.tar.gz
.
-rw-r--r--ace/Malloc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ace/Malloc.h b/ace/Malloc.h
index b7c48a0ceb8..06d08183ca6 100644
--- a/ace/Malloc.h
+++ b/ace/Malloc.h
@@ -146,16 +146,19 @@ public:
ACE_Based_Pointer_Basic<char> pointer_;
// Pointer to the contents.
+
+ ACE_Based_Pointer<ACE_Name_Node> next_;
+ // Pointer to the next node in the chain.
#else
char *name_;
// Name of the Node.
char *pointer_;
// Pointer to the contents.
-#endif /* ACE_HAS_POSITION_INDEPENDENT_MALLOC */
- ACE_Based_Pointer<ACE_Name_Node> next_;
+ ACE_Name_Node *next_;
// Pointer to the next node in the chain.
+#endif /* ACE_HAS_POSITION_INDEPENDENT_MALLOC */
void dump (void) const;
// Dump the state of the object.