parse_tree.h now uses standard memory allocation

for MacOSX
This commit is contained in:
jeggermo 2003-11-04 15:32:24 +00:00
commit 7c8da3722e

View file

@ -186,7 +186,7 @@ class subtree
TODO: use the std::allocator interface
*/
#if (defined(__GNUC__) || defined(_MSC_VER)) && !defined(_MT) // not multithreaded
#if (defined(__GNUC__) || defined(_MSC_VER)) && !(defined(_MT) || defined(MACOSX) || defined(__APPLE__)) // not multithreaded (or MACOSX - J. Eggermont)
Node_alloc<T> node_allocator;
Tree_alloc<subtree> tree_allocator;
#else