summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-06-13 17:58:33 +0000
committerSascha Schumann <sas@php.net>2000-06-13 17:58:33 +0000
commitdf74f1dfabafb515bdf8ffee5f989761c0d6604d (patch)
tree208700924af318225292a4982e9fc0ac2dda7c19 /Zend/zend_compile.h
parent307a234879aad2f47e00e158f9a424b9531c5879 (diff)
downloadphp-git-df74f1dfabafb515bdf8ffee5f989761c0d6604d.tar.gz
Add optional support for C0x inline semantics.
These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index a244811ea9..b89ae9daa9 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -191,7 +191,6 @@ typedef struct _zend_file_handle {
} zend_file_handle;
-#include "zend_globals.h"
#define IS_CONST (1<<0)
#define IS_TMP_VAR (1<<1)
@@ -201,6 +200,8 @@ typedef struct _zend_file_handle {
#define EXT_TYPE_UNUSED (1<<0)
+#include "zend_globals.h"
+
BEGIN_EXTERN_C()
void init_compiler(CLS_D ELS_DC);