I have had to downgrade the Visual Studio C++ compiler to the C++14 standard (/std:c++14) to compile because some types, such as unary_function have been deprecated in C++17.
Is it possible to update the code to be compatible with the latest version of the Visual Studio C++ compiler?
I have had to downgrade the Visual Studio C++ compiler to the C++14 standard (
/std:c++14
) to compile because some types, such asunary_function
have been deprecated in C++17.Is it possible to update the code to be compatible with the latest version of the Visual Studio C++ compiler?
Note that I'm using the
krabsetw
NuGet package.