Skip to content

Commit c8a7b44

Browse files
committed
Small fix for strict compilers (using the flag -Werror for instance)
1 parent c805448 commit c8a7b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib_json/json_value.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ static inline void releaseStringValue(char* value, unsigned length) {
157157
static inline void releasePrefixedStringValue(char* value) {
158158
free(value);
159159
}
160-
static inline void releaseStringValue(char* value, unsigned length) {
160+
static inline void releaseStringValue(char* value, unsigned) {
161161
free(value);
162162
}
163163
#endif // JSONCPP_USING_SECURE_MEMORY

0 commit comments

Comments
 (0)