Fix an MSVC compiler warning.
This commit is contained in:
parent
8f61fdedb9
commit
6468dd52f3
@ -519,7 +519,7 @@ tcache_boot(tsdn_t *tsdn)
|
|||||||
*/
|
*/
|
||||||
if (opt_lg_tcache_max < 0 || (ZU(1) << opt_lg_tcache_max) < SMALL_MAXCLASS)
|
if (opt_lg_tcache_max < 0 || (ZU(1) << opt_lg_tcache_max) < SMALL_MAXCLASS)
|
||||||
tcache_maxclass = SMALL_MAXCLASS;
|
tcache_maxclass = SMALL_MAXCLASS;
|
||||||
else if ((1U << opt_lg_tcache_max) > large_maxclass)
|
else if ((ZU(1) << opt_lg_tcache_max) > large_maxclass)
|
||||||
tcache_maxclass = large_maxclass;
|
tcache_maxclass = large_maxclass;
|
||||||
else
|
else
|
||||||
tcache_maxclass = (ZU(1) << opt_lg_tcache_max);
|
tcache_maxclass = (ZU(1) << opt_lg_tcache_max);
|
||||||
|
Loading…
Reference in New Issue
Block a user