37 lines
440 B
C++
37 lines
440 B
C++
/*
|
|
* mptAlloc.cpp
|
|
* ------------
|
|
* Purpose: Dynamic memory allocation.
|
|
* Notes : (currently none)
|
|
* Authors: OpenMPT Devs
|
|
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
#include "mptAlloc.h"
|
|
|
|
|
|
|
|
OPENMPT_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
#if defined(MPT_ENABLE_ALIGNED_ALLOC)
|
|
|
|
|
|
|
|
namespace mpt
|
|
{
|
|
|
|
} // namespace mpt
|
|
|
|
|
|
|
|
#endif // MPT_ENABLE_ALIGNED_ALLOC
|
|
|
|
|
|
|
|
OPENMPT_NAMESPACE_END
|