fixed redundant declarations in legacy v0.5 and v0.7 decoders
triggered by new flag -Wredundant-declsdev
parent
83d0c764dc
commit
133f0aee54
|
@ -326,13 +326,6 @@ size_t ZSTDv05_decompress_usingPreparedDCtx(
|
||||||
* Streaming functions (direct mode)
|
* Streaming functions (direct mode)
|
||||||
****************************************/
|
****************************************/
|
||||||
size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx);
|
size_t ZSTDv05_decompressBegin(ZSTDv05_DCtx* dctx);
|
||||||
size_t ZSTDv05_decompressBegin_usingDict(ZSTDv05_DCtx* dctx, const void* dict, size_t dictSize);
|
|
||||||
void ZSTDv05_copyDCtx(ZSTDv05_DCtx* dctx, const ZSTDv05_DCtx* preparedDCtx);
|
|
||||||
|
|
||||||
size_t ZSTDv05_getFrameParams(ZSTDv05_parameters* params, const void* src, size_t srcSize);
|
|
||||||
|
|
||||||
size_t ZSTDv05_nextSrcSizeToDecompress(ZSTDv05_DCtx* dctx);
|
|
||||||
size_t ZSTDv05_decompressContinue(ZSTDv05_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Streaming decompression, direct mode (bufferless)
|
Streaming decompression, direct mode (bufferless)
|
||||||
|
|
|
@ -2920,8 +2920,6 @@ typedef struct {
|
||||||
void ZSTDv07_seqToCodes(const seqStore_t* seqStorePtr, size_t const nbSeq);
|
void ZSTDv07_seqToCodes(const seqStore_t* seqStorePtr, size_t const nbSeq);
|
||||||
|
|
||||||
/* custom memory allocation functions */
|
/* custom memory allocation functions */
|
||||||
void* ZSTDv07_defaultAllocFunction(void* opaque, size_t size);
|
|
||||||
void ZSTDv07_defaultFreeFunction(void* opaque, void* address);
|
|
||||||
static const ZSTDv07_customMem defaultCustomMem = { ZSTDv07_defaultAllocFunction, ZSTDv07_defaultFreeFunction, NULL };
|
static const ZSTDv07_customMem defaultCustomMem = { ZSTDv07_defaultAllocFunction, ZSTDv07_defaultFreeFunction, NULL };
|
||||||
|
|
||||||
#endif /* ZSTDv07_CCOMMON_H_MODULE */
|
#endif /* ZSTDv07_CCOMMON_H_MODULE */
|
||||||
|
|
Loading…
Reference in New Issue