mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-05-18 11:35:34 +02:00
Merge pull request #454 from cbeiraod/master
Small fix for strict compilers (using the flag -Werror for instance)
This commit is contained in:
commit
45da594e71
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user