summaryrefslogtreecommitdiff
path: root/ACE/ace/Refcountable_T.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-04-24 05:59:30 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-04-24 05:59:30 +0000
commita37ef9ad35817bf667a8eb420125221a968bf5e3 (patch)
treeb69ca44f3d3cde99e5b5dde68972be0383d59cad /ACE/ace/Refcountable_T.inl
parent58f6c7a10c328f15f068a41f1c6022ecad6d8723 (diff)
downloadATCD-a37ef9ad35817bf667a8eb420125221a968bf5e3.tar.gz
Thu Apr 24 05:58:32 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Refcountable_T.inl')
-rw-r--r--ACE/ace/Refcountable_T.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Refcountable_T.inl b/ACE/ace/Refcountable_T.inl
index 972405f6861..fe0d39bfecf 100644
--- a/ACE/ace/Refcountable_T.inl
+++ b/ACE/ace/Refcountable_T.inl
@@ -5,28 +5,28 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class ACE_LOCK>
-inline
+ACE_INLINE
ACE_Refcountable_T<ACE_LOCK>::ACE_Refcountable_T (long refcount)
: refcount_ (refcount)
{
}
template <class ACE_LOCK>
-inline long
+ACE_INLINE long
ACE_Refcountable_T<ACE_LOCK>::increment (void)
{
return ++this->refcount_;
}
template <class ACE_LOCK>
-inline long
+ACE_INLINE long
ACE_Refcountable_T<ACE_LOCK>::decrement (void)
{
return --this->refcount_;
}
template <class ACE_LOCK>
-inline long
+ACE_INLINE long
ACE_Refcountable_T<ACE_LOCK>::refcount (void) const
{
return this->refcount_.value ();