fixed minor argument property for Visual

dev
Yann Collet 2017-12-30 15:42:28 +01:00
parent 76e802cde6
commit 00db4dbbb3
1 changed files with 3 additions and 4 deletions

View File

@ -10,7 +10,6 @@
#include "zstd_compress_internal.h" #include "zstd_compress_internal.h"
#include "zstd_opt.h" #include "zstd_opt.h"
#include "zstd_lazy.h" /* ZSTD_updateTree, ZSTD_updateTree_extDict */
#define ZSTD_LITFREQ_ADD 2 /* scaling factor for litFreq, so that frequencies adapt faster to new stats. Also used for matchSum (?) */ #define ZSTD_LITFREQ_ADD 2 /* scaling factor for litFreq, so that frequencies adapt faster to new stats. Also used for matchSum (?) */
@ -392,13 +391,13 @@ void ZSTD_updateTree_internal(ZSTD_CCtx* zc,
} }
void ZSTD_updateTree(ZSTD_CCtx* zc, void ZSTD_updateTree(ZSTD_CCtx* zc,
const BYTE* const ip, const BYTE* const iend, const BYTE* ip, const BYTE* iend,
const U32 nbCompares, const U32 mls) U32 nbCompares, U32 mls)
{ {
ZSTD_updateTree_internal(zc, ip, iend, nbCompares, mls, 0 /*extDict*/); ZSTD_updateTree_internal(zc, ip, iend, nbCompares, mls, 0 /*extDict*/);
} }
void ZSTD_updateTree_extDict(ZSTD_CCtx* zc, static void ZSTD_updateTree_extDict(ZSTD_CCtx* zc,
const BYTE* const ip, const BYTE* const iend, const BYTE* const ip, const BYTE* const iend,
const U32 nbCompares, const U32 mls) const U32 nbCompares, const U32 mls)
{ {