Merge pull request #2122 from felixhandte/unused-variables

Compile Under `-Wunused-variable`
This commit is contained in:
Felix Handte 2020-05-08 18:17:38 -04:00 committed by GitHub
commit aa9474ee9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1285,7 +1285,8 @@ int main(int const argCount, const char* argv[])
/* Compare strategies constant with the ground truth */
{ ZSTD_bounds strategyBounds = ZSTD_cParam_getBounds(ZSTD_c_strategy);
assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound);}
assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound);
(void)strategyBounds; }
if (showDefaultCParams) {
size_t fileNb;