summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-09 13:05:44 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-09 13:05:44 (GMT)
commit67fd5dffd9769a3d7fe8436bd79e05df7afd7b05 (patch)
tree9a9a3adaeb72504197247efbbf9bc0ad90a77fab /lib/lz4.h
parentc794829a203f21f375be19076cf439825a755c1a (diff)
downloadlz4-67fd5dffd9769a3d7fe8436bd79e05df7afd7b05.zip
lz4-67fd5dffd9769a3d7fe8436bd79e05df7afd7b05.tar.gz
lz4-67fd5dffd9769a3d7fe8436bd79e05df7afd7b05.tar.bz2
updated appveyor.yml
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index f7e2097..1a66227 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -58,7 +58,7 @@ extern "C" {
#if defined(LZ4_DLL_EXPORT) && (LZ4_DLL_EXPORT==1)
# define LZ4LIB_API __declspec(dllexport)
#elif defined(LZ4_DLL_IMPORT) && (LZ4_DLL_IMPORT==1)
-# define LZ4LIB_API __declspec(dllimport)
+# define LZ4LIB_API __declspec(dllimport) /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/
#else
# define LZ4LIB_API
#endif