This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Issue
#635
: Fix "expression has no effect" warning in json_tokener.c by casting to void.
tags/json-c-0.15-20200726
Eric Haszlakiewicz
5 years ago
parent
7a72805e34
commit
84e6032883
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
json_tokener.c
+ 1
- 1
json_tokener.c
View File
@@ -646,7 +646,7 @@ struct json_object *json_tokener_parse_ex(struct json_tokener *tok, const char *
if (tok->st_pos >= 4)
if (tok->st_pos >= 4)
break;
break;
ADVANCE_CHAR(str, tok);
(void)
ADVANCE_CHAR(str, tok);
if (!PEEK_CHAR(c, tok))
if (!PEEK_CHAR(c, tok))
{
{
/*
/*
Write
Preview
Loading…
Cancel
Save