これは私のためにコンパイルされません:
int i = 1;
std::function<void(std::vector<int>&)> execute = std::bind(append<int>, _1, std::ref(i));
append の署名は次のとおりです。
template<class T>
void append(std::vector<T>& container, const T& valueToAppend)
私が間違っていることは明らかですか?
コミラーエラーは次のとおりです。
error C2664: 'void (std::vector<_Ty> &,const T &)' : cannot convert parameter 1 from 'boost::arg<I>' to 'std::vector<_Ty> &'
1> with
1> [
1> _Ty=int,
1> T=int
1> ]
1> and
1> [
1> I=1
1> ]
1> and
1> [
1> _Ty=int
1> ]