NIM_Duilib_Framework
NIM_Duilib_Framework copied to clipboard
win10 vs2019 编译ui_components报错
问题现象
async_modal_runner.h里的friend class std::_Ref_count_obj; std找不到_Ref_count_obj
预期结果
重现步骤
remove std:: and change private to public
@zxpo This make it work . Thank you! in async_modal_runner.h lines 39~41
public:
template<class _Ty>
friend class Ref_count_obj;
remove std:: and change private to public
666,thanks