Использование bind1st для метода, который принимает аргумент по ссылке

Я есть такая структура:

struct A {
    void i(int i) {}
    void s(string const &s) {}
};

Теперь, когда я пробую это:

bind1st(mem_fun(&A::i), &a)(0);
bind1st(mem_fun(&A::s), &a)("");

Первая строка компилируется нормально, но вторая генерирует ошибку:

c:\program files (x86)\microsoft visual studio 10.0\vc\include\xfunctional(299): error C2535: 'void std::binder1st<_Fn2>::operator ()(const std::basic_string<_Elem,_Traits,_Ax> &) const' : member function already defined or declared
          with
          [
              _Fn2=std::mem_fun1_t<void,A,const std::string &>,
              _Elem=char,
              _Traits=std::char_traits<char>,
              _Ax=std::allocator<char>
          ]
          c:\program files (x86)\microsoft visual studio 10.0\vc\include\xfunctional(293) : see declaration of 'std::binder1st<_Fn2>::operator ()'
          with
          [
              _Fn2=std::mem_fun1_t<void,A,const std::string &>
          ]
          c:\work\sources\exception\test\exception\main.cpp(33) : see reference to class template instantiation 'std::binder1st<_Fn2>' being compiled
          with
          [
              _Fn2=std::mem_fun1_t<void,A,const std::string &>
          ]

В чем может быть проблема? Как я могу это исправить?

Редактировать:

Кажется, что любой аргумент ссылки является проблемой. Поэтому, если я изменю метод i на void i (int & i) {} , я получу аналогичную ошибку.

15
задан Juraj Blaho 19 October 2011 в 14:28
поделиться