From bba920816378735f9e2b81001959d5de70f1b825 Mon Sep 17 00:00:00 2001 From: leandor Date: Sun, 6 Nov 2016 01:58:23 -0300 Subject: [PATCH] (#18) Added #include for lz4frame.h api This is the API that is required to compress/decompress files as the LZ4.exe tool does. --- src/papi/lz4/api_detail.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/papi/lz4/api_detail.h b/src/papi/lz4/api_detail.h index dab64b4..1a8eeea 100644 --- a/src/papi/lz4/api_detail.h +++ b/src/papi/lz4/api_detail.h @@ -18,7 +18,9 @@ namespace lz4 { namespace api { template constexpr auto COMPRESSBOUND = LZ4_COMPRESSBOUND(Size); - }; + + #include + }; }; }; }; \ No newline at end of file