aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/Malloc_Allocator.inl
blob: 050d7353894e5e0544eed7b97ec271cd67ecb803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// -*- C++ -*-
//
// $Id: Malloc_Allocator.inl 80826 2008-03-04 14:51:23Z wotte $

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
ACE_Static_Allocator_Base::ACE_Static_Allocator_Base (char * buffer,
                                                      size_t size)
  : buffer_ (buffer),
    size_ (size),
    offset_ (0)
{
}

ACE_END_VERSIONED_NAMESPACE_DECL