You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use picojson in my software.
Thank you for developing picojson!
Before including picojson.h, my software defines __STDC_FORMAT_MACROS and includes inttypes.h.
In this case, there is a warning about __STDC_FORMAT_MACROS.
Fixeskazuho#91
Without this, if I include 2 libraries that define this macro, I get warnings like
```
warning: '__STDC_FORMAT_MACROS' macro redefined [-Wmacro-redefined]
```
This is on macos 10.15 with AppleClang 11.
Hi!
I use picojson in my software.
Thank you for developing picojson!
Before including picojson.h, my software defines __STDC_FORMAT_MACROS and includes inttypes.h.
In this case, there is a warning about __STDC_FORMAT_MACROS.
To solve this problem, include guard is required as follows.
Please consider this revision.
The text was updated successfully, but these errors were encountered: