Browse Source
Fix a VS 2015 compiler warning.
In VS 2015, the warning text is "warning C4550: expression evaluates to a function which is missing an argument list".
tags/json-c-0.13-20171207
ssrlive
GitHub
8 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
json_object.h
|
|
|
@@ -1009,7 +1009,7 @@ json_c_shallow_copy_fn json_c_shallow_copy_default; |
|
|
|
* or if the destination pointer is non-NULL |
|
|
|
*/ |
|
|
|
|
|
|
|
JSON_EXPORT int json_object_deep_copy(struct json_object *src, struct json_object **dst, json_c_shallow_copy_fn shallow_copy); |
|
|
|
JSON_EXPORT int json_object_deep_copy(struct json_object *src, struct json_object **dst, json_c_shallow_copy_fn *shallow_copy); |
|
|
|
#ifdef __cplusplus |
|
|
|
} |
|
|
|
#endif |
|
|
|
|