1
0
mirror of https://github.com/facebook/zstd.git synced 2025-03-07 01:10:04 +02:00

[pzstd] Cast unused parameters to void

This commit is contained in:
Nick Terrell 2016-11-15 17:46:28 -08:00
parent f147fccd0c
commit bcd61586a8

View File

@ -341,6 +341,8 @@ static size_t calculateStep(
std::uintmax_t size,
size_t numThreads,
const ZSTD_parameters &params) {
(void)size;
(void)numThreads;
return size_t{1} << (params.cParams.windowLog + 2);
}