mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 13:35:05 +00:00
Prevent unused-variable warning
This commit is contained in:
parent
f639fbd2c3
commit
62531bd012
1 changed files with 2 additions and 0 deletions
|
@ -92,8 +92,10 @@ static void decode_int_as_real()
|
|||
json_t *json;
|
||||
json_error_t error;
|
||||
|
||||
#if JSON_INTEGER_IS_LONG_LONG
|
||||
const char *imprecise;
|
||||
json_int_t expected;
|
||||
#endif
|
||||
|
||||
json = json_loads("42", JSON_DECODE_INT_AS_REAL | JSON_DECODE_ANY, &error);
|
||||
if (!json || !json_is_real(json) || json_real_value(json) != 42.0)
|
||||
|
|
Loading…
Add table
Reference in a new issue