Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add --json-file/-j option to read from file w/ json contents #311
Add --json-file/-j option to read from file w/ json contents #311
Changes from 1 commit
0fbb22d
9e2f4a4
0bd91b6
0e22840
e01fd50
3d55d30
dcea792
41bb29e
18ecad7
29de2be
a1d0ed8
ba76262
5618105
1d9d70d
1685194
0785c94
5264619
20c3b8c
73b272a
95fa596
26e4859
bb1a0e3
373bec0
1851fee
cc74cdf
b44e296
542fe6a
6ceea4a
12e6725
6eb908e
292fd77
a8dad0a
ad93491
aa39f61
e5e2429
ede3153
aa7d58b
d2b3fca
2f81538
3975591
1c22c47
e6f135e
a947832
7502449
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find any info on
-Wno-gnu
is it necessary? because it breaks the build on older GCCs.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hm thats not good. It was required by json-c , I think some of there macros are what required this. I'm wondering if we should jump out of json-c, and use one that is purely c89 (and small enough we can just include the source in the repo or something like @vszakats has been saying)
I think a lot of the scaffolding can stay in place for parsing single objects / streaming stuff. it would really just be the guts of from_json() that would need to be swapped out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What OS / compiler have you been using?