-
-
Notifications
You must be signed in to change notification settings - Fork 210
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
parson conflicts with json-c library #215
Comments
Could you please name the affected functions? The easiest solution is to rename them (for example by adding the prefix |
I think all |
The same could be true with, for example, TinySpline's vector functions. Yet, I would like to avoid adding various compilation flags to enable or disable certain features. As I said, in the long run I would like to implement JSON serialization directly in TinySpline.
TinySpline's JSON parser would only need a very small subset of general JSON parser libraries. For example, only numbers and array of numbers are needed. Generating JSON should be really easy. Parsing JSON requires some error handling. However, the amount of code should be quite small. |
I'm trying to use tinyspline with other libs which depend on json-c library, but I fail to link them because parson & json-c are using the same functions names.
Is it possible to make JSON suport optional or rename parson's function or somehow hide them ?
The text was updated successfully, but these errors were encountered: