From 0e7bc8eeb994d98b24f907afe153d3d79ca6425e Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Thu, 14 Sep 2006 23:02:57 +0000 Subject: ChangeLogTag:Thu Sep 14 23:01:16 UTC 2006 Steve Huston --- ACE/ChangeLog | 5 +++++ ACE/ace/Bound_Ptr.inl | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 959cb0484ed..3854eaeb661 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 14 23:01:16 UTC 2006 Steve Huston + + * ace/Bound_Ptr.inl: Tweak syntax to try and work around apparant + issues with BCB6. + Thu Sep 14 21:48:39 UTC 2006 Steve Huston * ace/OS_NS_Thread.inl (thr_getspecific): Removed the ACE_Errno_Guard diff --git a/ACE/ace/Bound_Ptr.inl b/ACE/ace/Bound_Ptr.inl index 7f6797156f9..bcbf6e8890f 100644 --- a/ACE/ace/Bound_Ptr.inl +++ b/ACE/ace/Bound_Ptr.inl @@ -194,7 +194,7 @@ ACE_Strong_Bound_Ptr::operator = (const ACE_Strong_Bound_Ptrcounter_) == 0) delete this->ptr_; @@ -208,7 +208,7 @@ ACE_Strong_Bound_Ptr::operator = (const ACE_Weak_Bound_Ptr inline void ACE_Strong_Bound_Ptr::reset (X *p) { COUNTER *old_counter = this->counter_; - X* old_ptr = this->ptr_; + X *old_ptr = this->ptr_; this->counter_ = COUNTER::create_strong (); this->ptr_ = p; if (COUNTER::detach_strong (old_counter) == 0) @@ -303,7 +303,7 @@ template inline void ACE_Strong_Bound_Ptr::reset (auto_ptr p) { COUNTER *old_counter = this->counter_; - X* old_ptr = this->ptr_; + X *old_ptr = this->ptr_; this->counter_ = COUNTER::create_strong (); this->ptr_ = p.release (); if (COUNTER::detach_strong (old_counter) == 0) -- cgit v1.2.1