Remove unused macro PHP_FNV1_32A_INIT and PHP_FNV1A_64_INIT (#11114)

This commit is contained in:
Nils 2023-05-03 17:46:31 +01:00 committed by GitHub
parent 4e6025a641
commit 36559fb264
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -66,6 +66,7 @@ PHP 8.3 INTERNALS UPGRADE NOTES
- zend_parse_ini_string
- zend_set_user_opcode_handler
- zend_ssa_inference
* Removed unused macros PHP_FNV1_32A_INIT and PHP_FNV1A_64_INIT. See GH-11114.
========================
2. Build system changes

View file

@ -18,12 +18,10 @@
#define PHP_HASH_FNV_H
#define PHP_FNV1_32_INIT ((uint32_t)0x811c9dc5)
#define PHP_FNV1_32A_INIT PHP_FNV1_32_INIT
#define PHP_FNV_32_PRIME ((uint32_t)0x01000193)
#define PHP_FNV1_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
#define PHP_FNV1A_64_INIT FNV1_64_INIT
#define PHP_FNV_64_PRIME ((uint64_t)0x100000001b3ULL)