summaryrefslogtreecommitdiff
path: root/TAO/tao/Queued_Message.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Queued_Message.h')
-rw-r--r--TAO/tao/Queued_Message.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Queued_Message.h b/TAO/tao/Queued_Message.h
index 051d71d6e2a..ee301886387 100644
--- a/TAO/tao/Queued_Message.h
+++ b/TAO/tao/Queued_Message.h
@@ -77,8 +77,8 @@ class TAO_Export TAO_Queued_Message : public TAO_LF_Invocation_Event
public:
/// Constructor
TAO_Queued_Message (TAO_ORB_Core *oc,
- ACE_Allocator *alloc,
- bool is_heap_allocated);
+ ACE_Allocator *alloc = 0,
+ bool is_heap_allocated = false);
/// Destructor
virtual ~TAO_Queued_Message (void);
@@ -218,7 +218,7 @@ protected:
* A flag to indicate whether @a this is on stack or heap. A true value
* indicates that @a this was created on heap.
*/
- bool is_heap_created_;
+ bool const is_heap_created_;
/// Cached copy of ORB_Core pointer
TAO_ORB_Core *orb_core_;