1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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
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)