diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-03-15 09:04:36 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-03-15 09:04:36 +0000 |
commit | 7865dfb5b8a6d93ee1b00160b6b181f165c1b3a7 (patch) | |
tree | 9c940fb2e1c5c426fc2c1533ac1a81bda418e425 /Zend/zend_constants.h | |
parent | 056bea6de7fff4824838ae95d7e12df384ef80b4 (diff) | |
download | php-git-7865dfb5b8a6d93ee1b00160b6b181f165c1b3a7.tar.gz |
Eliminated run-time constant fetching for TRUE, FALSE and NULL
Diffstat (limited to 'Zend/zend_constants.h')
-rw-r--r-- | Zend/zend_constants.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_constants.h b/Zend/zend_constants.h index 1bffa56cef..a0cc2b1bb5 100644 --- a/Zend/zend_constants.h +++ b/Zend/zend_constants.h @@ -26,6 +26,7 @@ #define CONST_CS (1<<0) /* Case Sensitive */ #define CONST_PERSISTENT (1<<1) /* Persistent */ +#define CONST_CT_SUBST (2<<1) /* Allow compile-time substitution */ #define PHP_USER_CONSTANT INT_MAX /* a constant defined in user space */ |