summaryrefslogtreecommitdiffstats
path: root/lib/lz4.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lz4.c')
-rw-r--r--lib/lz4.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 5efcbc0..64a2e82 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -85,6 +85,17 @@
#endif
+/*
+ * register is ignored when the code built with a C++-17 compiler
+ * Remove the keyword when built with C++-17 to silent the warning
+ */
+#if defined(__cplusplus) && __cplusplus > 201402L
+# define REGISTER
+#else
+# define REGISTER register
+#endif
+
+
/*-************************************
* Dependency
**************************************/
@@ -330,7 +341,7 @@ static const int LZ4_minLength = (MFLIMIT+1);
/*-************************************
* Common functions
**************************************/
-static unsigned LZ4_NbCommonBytes (register reg_t val)
+static unsigned LZ4_NbCommonBytes (REGISTER reg_t val)
{
if (LZ4_isLittleEndian()) {
if (sizeof(val)==8) {