finishing off non-recursive memory management

[SVN r18186]
This commit is contained in:
John Maddock
2003-04-05 10:21:51 +00:00
parent 6746fd87cc
commit 180c7d64a2

View File

@ -104,16 +104,6 @@ BOOST_REGEX_DECL void BOOST_REGEX_CALL raise_regex_exception(const std::string&
#if defined(BOOST_REGEX_NON_RECURSIVE) && !defined(BOOST_REGEX_V3)
BOOST_REGEX_DECL void* BOOST_REGEX_CALL get_mem_block()
{
return ::operator new(BOOST_REGEX_BLOCKSIZE);
}
BOOST_REGEX_DECL void BOOST_REGEX_CALL release_mem_block(void* p)
{
::operator delete(p);
}
mem_block_cache block_cache = { 0, };
#endif