diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2006-07-19 12:33:42 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2006-07-19 12:33:42 +0000 |
commit | 6e9814d09035bc47836a876540286799d6af5c92 (patch) | |
tree | 2f2196240786b780502026826c9d5ca3f34f6a6d /TAO/tao/Profile.cpp | |
parent | b1f467119ae6f6d61d07ebdcf4de4292b13c73cb (diff) | |
download | ATCD-6e9814d09035bc47836a876540286799d6af5c92.tar.gz |
ChangeLogTag: Wed Jul 19 12:31:50 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/Profile.cpp')
-rw-r--r-- | TAO/tao/Profile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Profile.cpp b/TAO/tao/Profile.cpp index ef5900c8b6c..4485d84c13d 100644 --- a/TAO/tao/Profile.cpp +++ b/TAO/tao/Profile.cpp @@ -76,16 +76,16 @@ TAO_Profile::~TAO_Profile (void) //@@ TAO_PROFILE_SPL_DESTRUCTOR_ADD_HOOK } -CORBA::ULong +unsigned long TAO_Profile::_incr_refcnt (void) { return this->refcount_.increment (); } -CORBA::ULong +unsigned long TAO_Profile::_decr_refcnt (void) { - CORBA::ULong count = this->refcount_.decrement (); + unsigned long count = this->refcount_.decrement (); if (count != 0) return count; |