I'm having trouble understanding why the Foo move constructor tries to invoke ~ptr in the following example:
#include <utility>
template <typename T, typename Policy>
class ptr {
T * m_t;
public:
ptr() : m_t(0) {}
explicit ptr(T *t) : m_t(t) {}
ptr(const ptr &other) : m_t(Policy::clone(other.m_t)) {}
ptr(ptr &&other) : m_t(other.m_t) { other.m_t = 0; }
~ptr() { Policy::delete_(m_t); }
ptr &operator=(const ptr &other)
{ ptr copy(other); swap(copy); return *this; }
ptr &operator=(ptr &&other)
{ std::swap(m_t,other.m_t); return *this; }
void swap(ptr &other) { std::swap(m_t, other.m_t); }
const T * get() const { return m_t; }
T * get() { return m_t; }
};
class FooPolicy;
class FooPrivate;
class Foo {
// some form of pImpl:
typedef ptr<FooPrivate,FooPolicy> DataPtr;
DataPtr d;
public:
// copy semantics: out-of-line
Foo();
Foo(const Foo &other);
Foo &operator=(const Foo &other);
~Foo();
// move semantics: inlined
Foo(Foo &&other) : d(std::move(other.d)) {} // l.35 ERR: using FooDeleter in ~ptr required from here
Foo &operator=(Foo &&other) { d.swap(other.d); return *this; }
};
GCC 4.7:
foo.h: In instantiation of ‘ptr<T, Policy>::~ptr() [with T = FooPrivate; Policy = FooPolicy]’:
foo.h:34:44: required from here
foo.h:11:14: error: incomplete type ‘FooPolicy’ used in nested name specifier
Clang 3.1:
foo.h:11:14: error: incomplete type 'FooPolicy' named in nested name specifier
~ptr() { Policy::delete_(m_t); }
^~~~~~~~
foo.h:34:5: note: in instantiation of member function 'ptr<FooPrivate, FooPolicy>::~ptr' requested here
Foo(Foo &&other) : d(std::move(other.d)) {}
^
foo.h:23:7: note: forward declaration of 'FooPolicy'
class FooPolicy;
^
foo.h:11:20: error: incomplete definition of type 'FooPolicy'
~ptr() { Policy::delete_(m_t); }
~~~~~~^~
2 errors generated.
What's going on? I'm writing move constructors to avoid running copy ctors and dtors. Note that this is a header file that tries to hide its implementation (pimpl idiom), so making FooDeleter a full type isn't an option.
Does this error mean accessing f after
Foo f;
Foo f2 = std::move(f);
is illegal, because its destructor has run? That sounds hardly credible: it's still in scope...
Deleter(m_t);doesn't mean what you think it means. It defines an unused redundantly parenthesised variablem_tof typeDeleter. – hvd Feb 23 at 17:01Foo->QPainterPath). – Marc Mutz - mmutz Feb 23 at 17:14Foo(Foo &&) = default, I get the same error. – Marc Mutz - mmutz Feb 23 at 17:16