summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2015-04-14 15:19:13 (GMT)
committerTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2015-04-14 21:39:05 (GMT)
commite1283c7991b9b55348480dd114af1aa47410811b (patch)
tree84410ab6c1e94f0b17ffbab31d7c378d909dceed /lib
parentd7298d2059a4f2da7aa19122d3af2aacb931972b (diff)
downloadlz4-e1283c7991b9b55348480dd114af1aa47410811b.zip
lz4-e1283c7991b9b55348480dd114af1aa47410811b.tar.gz
lz4-e1283c7991b9b55348480dd114af1aa47410811b.tar.bz2
Fix LZ4_DEPRECATED() for older/non-gcc/clang/MSVC compilers
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index e831055..98296e9 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -297,7 +297,7 @@ int LZ4_decompress_fast_usingDict (const char* source, char* dest, int originalS
# define LZ4_DEPRECATED(message) __declspec(deprecated(message))
# else
# pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
-# define LZ4_DEPRECATED
+# define LZ4_DEPRECATED(message)
# endif
#endif // LZ4_DEPRECATE_WARNING_DEFBLOCK