Function_schema.h(49,1): error C2351: obsolete C++ constructor initialization syntax

Hi,
I got this error

Error: function_schema.h(49,1): error C2351: obsolete C++ constructor initialization syntax

Version pythoch in c++: libtorch-win-shared-with-deps-debug-2.5.0+cpu.zip

I am using visual stuido 2020 and compiling with:
ISO C++17 Standard (/std:c++17)

Thanks very much for you help!
Best!

I think I have found the souce of the error. There is a conflict with the includes of the library

wxWidgets

// define this one just in case it occurs somewhere (instead of preferred
// wxTRANSLATE) too
#if !defined(WXINTL_NO_GETTEXT_MACRO)
#if !defined(gettext_noop)
#define gettext_noop(str) (str)
#endif
#if !defined(N_)
#define N_(s) (s)
#endif
#endif

I have fixed changing:

#define N_ (s) (s)
to
#define N_2 (s) (s)

And this code in wxWidgets it is about translation language. And I am not using translation…so…

I marked as fixed.
Best
Felix