We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce00aa commit a48fbf9Copy full SHA for a48fbf9
UPGRADING.INTERNALS
@@ -66,6 +66,7 @@ PHP 8.3 INTERNALS UPGRADE NOTES
66
- zend_parse_ini_string
67
- zend_set_user_opcode_handler
68
- zend_ssa_inference
69
+* Removed unused macros PHP_FNV1_32A_INIT and PHP_FNV1A_64_INIT. See GH-11114.
70
71
========================
72
2. Build system changes
ext/hash/php_hash_fnv.h
@@ -18,12 +18,10 @@
18
#define PHP_HASH_FNV_H
19
20
#define PHP_FNV1_32_INIT ((uint32_t)0x811c9dc5)
21
-#define PHP_FNV1_32A_INIT PHP_FNV1_32_INIT
22
23
#define PHP_FNV_32_PRIME ((uint32_t)0x01000193)
24
25
#define PHP_FNV1_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
26
-#define PHP_FNV1A_64_INIT FNV1_64_INIT
27
28
#define PHP_FNV_64_PRIME ((uint64_t)0x100000001b3ULL)
29
0 commit comments