File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1868,15 +1868,14 @@ ZSTDLIB_STATIC_API const ZSTD_DDict* ZSTD_initStaticDDict(
1868
1868
typedef void * (*ZSTD_allocFunction) (void * opaque, size_t size);
1869
1869
typedef void (*ZSTD_freeFunction) (void * opaque, void * address);
1870
1870
typedef struct { ZSTD_allocFunction customAlloc; ZSTD_freeFunction customFree; void * opaque; } ZSTD_customMem;
1871
- static
1872
- #ifdef __GNUC__
1873
- __attribute__ ((__unused__))
1874
- #endif
1875
-
1876
1871
#if defined(__clang__) && __clang_major__ >= 5
1877
1872
#pragma clang diagnostic push
1878
1873
#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
1879
1874
#endif
1875
+ static
1876
+ #ifdef __GNUC__
1877
+ __attribute__ ((__unused__))
1878
+ #endif
1880
1879
ZSTD_customMem const ZSTD_defaultCMem = { NULL , NULL , NULL }; /* *< this constant defers to stdlib's functions */
1881
1880
#if defined(__clang__) && __clang_major__ >= 5
1882
1881
#pragma clang diagnostic pop
You can’t perform that action at this time.
0 commit comments