user2993456
问问题
950 次
1 回答
3
You should give it a little help in deducing the template types:
std::not1(std::ptr_fun<int, int>(isalnum)))
or by fully qualifying it:
std::not1(std::ptr_fun(::isalnum)))
it seems that gcc and clang have multiple overload resolution candidates due to the locale functions.
于 2014-10-26T15:01:32.033 回答