1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 21:19:24 +00:00

Use the standard 'new' operator.

This commit is contained in:
Bruno Haible
2002-10-31 12:30:27 +00:00
parent a07f46bd1d
commit 00c5953c20
5 changed files with 17 additions and 81 deletions

View File

@@ -131,17 +131,6 @@ private:
/* Global option coordinator for the entire program. */
extern Options option;
/* Set to 1 if your want to stack-allocate some large arrays.
This requires compiler support for variable-size arrays on the stack
(not ANSI). */
#ifndef LARGE_STACK_ARRAYS
#if defined(__GNUG__) && !defined(__STRICT_ANSI__)
#define LARGE_STACK_ARRAYS 1
#else
#define LARGE_STACK_ARRAYS 0
#endif
#endif
#ifdef __OPTIMIZE__
#define INLINE inline