I have created a template project in cocos2dx 3.0. I finished the following command.
./create_project.py -n proj1 -k proj2 -l cpp -p mycompany
Proj1 is created successfully. But i got issue in utility file.
"No member named 'value' in 'std::_1::is_nothrow_copy_constructible
in the line 240 in utility.
_LIBCPP_INLINE_VISIBILITY
pair(const pair& __p)
_NOEXCEPT_(is_nothrow_copy_constructible<first_type>::value && is_nothrow_copy_constructible<second_type>::value)
: first(__p.first),
second(__p.second)
Can any one help me to fix the issue?
Thanks in advance.