13
0

and now with "d"

This commit is contained in:
Robin Gareus 2016-07-19 16:33:48 +02:00
parent 96ac896db0
commit 55bd8ff4d8

View File

@ -49,7 +49,7 @@ LuaProc::LuaProc (AudioEngine& engine,
, _mempool ("LuaProc", 2097152)
#ifdef USE_TLSF
, lua (lua_newstate (&PBD::TLSF::lalloc, &_mempool))
#elif define USE_MALLOC
#elif defined USE_MALLOC
, lua ()
#else
, lua (lua_newstate (&PBD::ReallocPool::lalloc, &_mempool))
@ -79,7 +79,7 @@ LuaProc::LuaProc (const LuaProc &other)
, _mempool ("LuaProc", 2097152)
#ifdef USE_TLSF
, lua (lua_newstate (&PBD::TLSF::lalloc, &_mempool))
#elif define USE_MALLOC
#elif defined USE_MALLOC
, lua ()
#else
, lua (lua_newstate (&PBD::ReallocPool::lalloc, &_mempool))