Browse Source

use correct #ifdef

David Rose 20 years ago
parent
commit
f4caa03838
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/express/virtualFile.cxx

+ 1 - 1
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
     // the stream pointer does not call the appropriate global delete
     // function; instead apparently calling the system delete
     // function; instead apparently calling the system delete
     // function.  So we call the delete function by hand instead.
     // function.  So we call the delete function by hand instead.
-#ifndef NDEBUG
+#ifndef USE_MEMORY_NOWRAPPERS
     stream->~istream();
     stream->~istream();
     (*global_operator_delete)(stream);
     (*global_operator_delete)(stream);
 #else
 #else