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
In C++ projects, MSVC only supports designated initializers when the project is compiled under C++20 standard. Such a deep change is not feasible in large projects.
Thus misc.h bombs when included in any C++ source file under MSVC.
Thank you for this issue. I'm sorry for C++ incompatibilities. We are mostly testing with plain C.
However, I thought we already considered this case. If you have a look at header hpy.h:112, this already has exactly the same guard as you would introduce (i.e. #if defined( _MSC_VER ) && defined( __cplusplus )).
I'm just trying to understand the problem. Is the problem that the current misc.h does (e.g in function _py2hf) _hfconv( ._i = h._i );? Should it be just _hfconv( h._i );?
In C++ projects, MSVC only supports designated initializers when the project is compiled under C++20 standard. Such a deep change is not feasible in large projects.
Thus
misc.h
bombs when included in any C++ source file under MSVC.A dirty workaround in
misc.h
is to haveWould this change be acceptable, and if not - how else should such a workaround be implemented?
The text was updated successfully, but these errors were encountered: