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'm building OpenEXR with Python 3.6 bindings on Windows with Boost 1.66 and MSVC 14 (VS2015).
I got the following compile error: openexr\pyilmbase\pyimath\PyImathFixedMatrix.h(144): error C2872: 'ssize_t': ambiguous symbol
As far as I can tell that is the only use of ssize_t in the whole project. I changed it to Py_ssize_t to get it to compile but I don't know if that is the proper solution.
The text was updated successfully, but these errors were encountered:
I'm building OpenEXR with Python 3.6 bindings on Windows with Boost 1.66 and MSVC 14 (VS2015).
I got the following compile error:
openexr\pyilmbase\pyimath\PyImathFixedMatrix.h(144): error C2872: 'ssize_t': ambiguous symbol
As far as I can tell that is the only use of
ssize_t
in the whole project. I changed it toPy_ssize_t
to get it to compile but I don't know if that is the proper solution.The text was updated successfully, but these errors were encountered: