jeudi 23 avril 2015

Mixing std::move() and std::thread won't compile

Having code as follows:

#include <memory>
#include <thread>

class A
{
  void foo(int&& arg) const {}

  void boo() const 
  {
    int value(0);
    std::thread t(&A::foo, this, std::move(value));
    t.join();
  }

};

int main()
{
  A a;
  return 0;
}

MS Visual Studio 2012 (toolset v110) gives next error:

error C2664: '_Rx std::_Pmf_wrap<_Pmf_t,_Rx,_Farg0,_V0_t,_V1_t,_V2_t,_V3_t,_V4_t,_V5_t,>::operator ()(const _Wrapper &,_V0_t) const' : cannot convert parameter 2 from 'int' to 'int &&'

What's that? Can't we use move semantics through threads?

Aucun commentaire:

Enregistrer un commentaire