From c8a7b445ea766d0ab9d270cd884ee42ab234b721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristo=CC=81va=CC=83o=20B=20da=20Cruz=20e=20Silva?= Date: Sat, 26 Mar 2016 18:41:46 +0000 Subject: [PATCH] Small fix for strict compilers (using the flag -Werror for instance) --- src/lib_json/json_value.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp index bbfa12c..e195594 100644 --- a/src/lib_json/json_value.cpp +++ b/src/lib_json/json_value.cpp @@ -157,7 +157,7 @@ static inline void releaseStringValue(char* value, unsigned length) { static inline void releasePrefixedStringValue(char* value) { free(value); } -static inline void releaseStringValue(char* value, unsigned length) { +static inline void releaseStringValue(char* value, unsigned) { free(value); } #endif // JSONCPP_USING_SECURE_MEMORY