diff options
author | W. Felix Handte <w@felixhandte.com> | 2018-04-18 19:52:04 (GMT) |
---|---|---|
committer | W. Felix Handte <w@felixhandte.com> | 2018-04-20 00:54:35 (GMT) |
commit | b67de2a327644607c034250d105ba9374b0897e8 (patch) | |
tree | 90786a1ea029f34daafb1b7854d6f7eba4ec5371 /lib | |
parent | 22e16d5b509c56ad350ae42664ddcd3da7b97f1f (diff) | |
download | lz4-b67de2a327644607c034250d105ba9374b0897e8.zip lz4-b67de2a327644607c034250d105ba9374b0897e8.tar.gz lz4-b67de2a327644607c034250d105ba9374b0897e8.tar.bz2 |
Force Inline on HashChain
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lz4hc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c index 5c2b001..c050c59 100644 --- a/lib/lz4hc.c +++ b/lib/lz4hc.c @@ -437,7 +437,7 @@ LZ4_FORCE_INLINE int LZ4HC_encodeSequence ( return 0; } -static int LZ4HC_compress_hashChain ( +LZ4_FORCE_INLINE int LZ4HC_compress_hashChain ( LZ4HC_CCtx_internal* const ctx, const char* const source, char* const dest, |