Small fix for strict compilers (using the flag -Werror for instance)

This commit is contained in:
Cristóvão B da Cruz e Silva 2016-03-26 18:41:46 +00:00
parent c8054483f8
commit c8a7b445ea

View File

@ -157,7 +157,7 @@ static inline void releaseStringValue(char* value, unsigned length) {
static inline void releasePrefixedStringValue(char* value) { static inline void releasePrefixedStringValue(char* value) {
free(value); free(value);
} }
static inline void releaseStringValue(char* value, unsigned length) { static inline void releaseStringValue(char* value, unsigned) {
free(value); free(value);
} }
#endif // JSONCPP_USING_SECURE_MEMORY #endif // JSONCPP_USING_SECURE_MEMORY