mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-18 13:59:39 -04:00
5651828bf7
* Updated to 6721 and 676 * Fixed TrinityScript logo * Version updated to 0.2.6721.676 --HG-- branch : trunk rename : 6700-670 => 6721-676
20 lines
367 B
C++
20 lines
367 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Obstack_T.inl 80826 2008-03-04 14:51:23Z wotte $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
template <class CHAR> ACE_INLINE size_t
|
|
ACE_Obstack_T<CHAR>::length () const
|
|
{
|
|
return this->size_ / sizeof (CHAR);
|
|
}
|
|
|
|
template <class CHAR> ACE_INLINE size_t
|
|
ACE_Obstack_T<CHAR>::size () const
|
|
{
|
|
return this->size_;
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|