hash.h 的c++ 文件 报错提示:
No template named ‘unary_function’ in namespace ‘std’; did you mean ‘__unary_function’?
那请问现在要怎么能解决?
升到 381 试试,不行就等 382
382大概什么时候出测试版
另外,381合并依赖不生效的问题,是在这个版本解决吗?
Add worker for cocos native by haroel · Pull Request #16547 · cocos/cocos-engine (github.com)
第一次给引擎提PR,20个 checks,19个成功1个失败,但是我不太理解这个失败是什么问题,可以给点提示吗? 
由于 std::unary_function 在 C++17 中被移除了,我们需要更新代码以适应现代 C++ 标准。可以通过直接定义 argument_type 和 result_type 来替代 std::unary_function。
#if defined(BOOST_NO_CXX98_FUNCTION_BASE)
template
struct hash_base {
typedef T argument_type;
typedef std::size_t result_type;
};
#else
template
struct hash_base {
typedef T argument_type;
typedef std::size_t result_type;
};
#endif
这个东西写哪里?好奇
