summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.h
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-07 12:00:08 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-07 12:00:08 (GMT)
commit58ead8dd27681a8203ca94e3c83bdd00ec434f41 (patch)
treebfda26d99c92cdaf7a26ff75a33a061a80ec17eb /lib/lz4frame.h
parent98be008479486f60b0a98289eee2f57c28650964 (diff)
downloadlz4-58ead8dd27681a8203ca94e3c83bdd00ec434f41.zip
lz4-58ead8dd27681a8203ca94e3c83bdd00ec434f41.tar.gz
lz4-58ead8dd27681a8203ca94e3c83bdd00ec434f41.tar.bz2
fixed appveyor.yml
Diffstat (limited to 'lib/lz4frame.h')
-rw-r--r--lib/lz4frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index 63d61ad..6b6e320 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -66,7 +66,7 @@ extern "C" {
#endif
#if defined(_MSC_VER)
-# define LZ4F_DEPRECATE(x) __declspec(deprecated) x
+# define LZ4F_DEPRECATE(x) x /* __declspec(deprecated) x - only works with C++ */
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 6))
# define LZ4F_DEPRECATE(x) x __attribute__((deprecated))
#else