Define umul128 in phmap namespace. (#273)

This commit is contained in:
Gregory Popovitch
2025-04-11 10:24:44 -04:00
committed by GitHub
parent 40780b29bd
commit 896f1a03e4
2 changed files with 31 additions and 30 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ public:
uint64_t operator()(uint64_t boundExcluded) noexcept {
#ifdef PHMAP_HAS_UMUL128
uint64_t h;
(void)umul128(operator()(), boundExcluded, &h);
(void)phmap::umul128(operator()(), boundExcluded, &h);
return h;
#else
return 0;