From f4caa03838de70b6413ce7e6ae6e73d09bbe8993 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 30 Sep 2005 19:52:22 +0000 Subject: [PATCH] use correct #ifdef --- panda/src/express/virtualFile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/express/virtualFile.cxx b/panda/src/express/virtualFile.cxx index 715ac61e1f..c5be78d4e1 100644 --- a/panda/src/express/virtualFile.cxx +++ b/panda/src/express/virtualFile.cxx @@ -193,7 +193,7 @@ close_read_file(istream *stream) const { // the stream pointer does not call the appropriate global delete // function; instead apparently calling the system delete // function. So we call the delete function by hand instead. -#ifndef NDEBUG +#ifndef USE_MEMORY_NOWRAPPERS stream->~istream(); (*global_operator_delete)(stream); #else