NIM_Duilib_Framework icon indicating copy to clipboard operation
NIM_Duilib_Framework copied to clipboard

win10 vs2019 编译ui_components报错

Open huycode opened this issue 4 years ago • 3 comments

问题现象

async_modal_runner.h里的friend class std::_Ref_count_obj; std找不到_Ref_count_obj

预期结果

重现步骤

huycode avatar Apr 22 '20 05:04 huycode

remove std:: and change private to public

zxpo avatar Apr 25 '20 05:04 zxpo

@zxpo This make it work . Thank you! in async_modal_runner.h lines 39~41

public:
	template<class _Ty>
	friend class Ref_count_obj;

wzhsunn avatar Apr 25 '20 15:04 wzhsunn

remove std:: and change private to public

666,thanks

xianghu1314 avatar Jun 12 '21 04:06 xianghu1314