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
There are many places in the library where the data types aren't standardize, for eg. in the coordinate systems. For example, the size of long int i.e. 8 usually, varies from compiler to compiler, and so it could lead to an issue. You can see this here- https://godbolt.org/z/cEsMPP
So we should be using the std::int64_t/std::size_t by including the header file cstdint.
The text was updated successfully, but these errors were encountered:
There are many places in the library where the data types aren't standardize, for eg. in the coordinate systems. For example, the size of long int i.e. 8 usually, varies from compiler to compiler, and so it could lead to an issue. You can see this here- https://godbolt.org/z/cEsMPP
So we should be using the std::int64_t/std::size_t by including the header file cstdint.
The text was updated successfully, but these errors were encountered: