Question

What is the matter of the error, which produces the following code?

struct foo
{
    void call(void (foo::*ptr)()) &&
    {
        (*this.*ptr)();
    }
};

How to fix this error?

Was it helpful?

Solution

Since the member pointer has the rvalue qualifier, the compiler must be told that *this is to be treated as an rvalue by using std::move on it:

(std::move(*this).*ptr)();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top