Skip to content

Commit

Permalink
Small fix for strict compilers (using the flag -Werror for instance)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeiraod committed Mar 26, 2016
1 parent c805448 commit c8a7b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_json/json_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c8a7b44

Please sign in to comment.