Update build system for VS 2022

This commit is contained in:
Felix Koehler
2023-10-30 07:47:16 +01:00
parent 07934c01d5
commit 5348c6e002
17 changed files with 4542 additions and 1 deletions

View File

@@ -5748,8 +5748,13 @@ int ANT_CALL TwKeyTest(int _Key, int _Modifiers)
}
// ---------------------------------------------------------------------------
#if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201402L) || __cplusplus >= 201402L)
#include <functional>
struct StructCompare : public function<bool(TwType, TwType)>
#else
struct StructCompare : public binary_function<TwType, TwType, bool>
#endif
{
bool operator()(const TwType& _Left, const TwType& _Right) const
{