mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-19 22:49:39 -04:00
32546e2282
--HG-- branch : trunk
20 lines
400 B
C++
20 lines
400 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Obstack_T.inl 88793 2010-02-01 17:50:34Z cleeland $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
template <class ACE_CHAR_T> ACE_INLINE size_t
|
|
ACE_Obstack_T<ACE_CHAR_T>::length () const
|
|
{
|
|
return this->size_ / sizeof (ACE_CHAR_T);
|
|
}
|
|
|
|
template <class ACE_CHAR_T> ACE_INLINE size_t
|
|
ACE_Obstack_T<ACE_CHAR_T>::size () const
|
|
{
|
|
return this->size_;
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|