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 dynamic instrumentation to gather information about a program, and then output it using your json library to a file. When I parse the file into a different application using your library, I get different values. Below is a minimal example:
The documentation states that numbers are stored in int64_t, and that the maximum value allowed is 9223372036854775807. The above value is less than that number, so I'm not sure what the problem is. Thanks.
Edit: I am using version 1.1.0
The text was updated successfully, but these errors were encountered:
Hello,
I use dynamic instrumentation to gather information about a program, and then output it using your json library to a file. When I parse the file into a different application using your library, I get different values. Below is a minimal example:
main.cpp
test.json
{ "call": "pthread_mutex_lock", "id": 8492065431569638403, "object": 139898772169632 }
Output
8492065431569638400
The documentation states that numbers are stored in int64_t, and that the maximum value allowed is 9223372036854775807. The above value is less than that number, so I'm not sure what the problem is. Thanks.
Edit: I am using version 1.1.0
The text was updated successfully, but these errors were encountered: