diff options
author | bala <balanatarajan@users.noreply.github.com> | 2002-11-15 20:56:21 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2002-11-15 20:56:21 +0000 |
commit | 9de9345ba8e49c30c88a7e9675976a10ac90006b (patch) | |
tree | 7ba430bca0f638a06d9659dad5e835ebcddbd9f0 /TAO/tao/Queued_Message.cpp | |
parent | 855a075ff63846965d0c4cc8651a9506aab52493 (diff) | |
download | ATCD-9de9345ba8e49c30c88a7e9675976a10ac90006b.tar.gz |
ChangeLogTag: Fri Nov 15 14:51:31 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Queued_Message.cpp')
-rw-r--r-- | TAO/tao/Queued_Message.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/tao/Queued_Message.cpp b/TAO/tao/Queued_Message.cpp index dfb957674f4..c5ab2d88575 100644 --- a/TAO/tao/Queued_Message.cpp +++ b/TAO/tao/Queued_Message.cpp @@ -9,9 +9,10 @@ ACE_RCSID(tao, Queued_Message, "$Id$") -TAO_Queued_Message::TAO_Queued_Message (ACE_Allocator *alloc) +TAO_Queued_Message::TAO_Queued_Message (ACE_Allocator *alloc, + int is_heap_allocated) : allocator_ (alloc) - , is_heap_created_ (0) + , is_heap_created_ (is_heap_allocated) , next_ (0) , prev_ (0) { |