I am working with an old C++ project, and I am converting it and using Visual Studio 2022 (C++ 14) for development.
I have some old libraries:
- boost_1_34_1
- lua-5.0.2
- luabind 0.7
I have created a Luabind project and tried to build it in Visual Studio 2022, but I am encountering quite a few errors, such as:
- E0864 _Tuple_cat2 is not a template luabind Microsoft Visual Studio2022CommunityVCToolsMSVC14.41.34120includetuple 1037
- E0864 _Remove_cvref_t is not a template luabind Microsoft Visual Studio2022CommunityVCToolsMSVC14.41.34120includetype_traits 1676
- …
I am looking forward to any help regarding this issue.
3