mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
(based on zergtmn's repo commit 3a8c259) (based on zergtmn's repo commit 946c1a8) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
12 lines
258 B
C++
12 lines
258 B
C++
// -*- C++ -*-
|
|
// $Id: Obstack_T.inl 91688 2010-09-09 11:21:50Z johnnyw $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
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
|