diff options
author | Stanislav Malyshev <stas@php.net> | 2007-08-02 23:54:19 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2007-08-02 23:54:19 +0000 |
commit | a019d99e3f67221f05b33ed0e75bb35b2fb23dfe (patch) | |
tree | fb5e607646a73b439bc19a9aa2df6e2265cb3dac /Zend/zend_constants.h | |
parent | f361b07629bbd1da16f8b6d647f4131988ce496d (diff) | |
download | php-git-a019d99e3f67221f05b33ed0e75bb35b2fb23dfe.tar.gz |
it's 4 either way, but it's customary to use 1<<
Diffstat (limited to 'Zend/zend_constants.h')
-rw-r--r-- | Zend/zend_constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_constants.h b/Zend/zend_constants.h index 4d60cf96c1..8a983a27e5 100644 --- a/Zend/zend_constants.h +++ b/Zend/zend_constants.h @@ -26,7 +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 CONST_CT_SUBST (1<<2) /* Allow compile-time substitution */ #define PHP_USER_CONSTANT INT_MAX /* a constant defined in user space */ |