From: Yann Collet Date: Thu, 2 Nov 2017 00:01:45 +0000 (-0700) Subject: removed line with `//` comment X-Git-Tag: v1.3.3^2~43^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F906%2Fhead;p=thirdparty%2Fzstd.git removed line with `//` comment this is for a different topic (better parameter adaptation for small files + dictionary and/or custome parameters) --- diff --git a/programs/bench.c b/programs/bench.c index 66c406abd..5093f110d 100644 --- a/programs/bench.c +++ b/programs/bench.c @@ -286,7 +286,6 @@ static int BMK_benchMem(const void* srcBuffer, size_t srcSize, U32 nbLoops = 0; ZSTD_CCtx_setParameter(ctx, ZSTD_p_nbThreads, g_nbThreads); ZSTD_CCtx_setParameter(ctx, ZSTD_p_compressionLevel, cLevel); - //ZSTD_CCtx_setPledgedSrcSize(ctx, blockTable[0].srcSize); /* estimation, only to help cLevel conversion before applying advanced compression parameters */ ZSTD_CCtx_setParameter(ctx, ZSTD_p_enableLongDistanceMatching, g_ldmFlag); ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmMinMatch, g_ldmMinMatch); ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmHashLog, g_ldmHashLog);