Am I right in assuming that
class D { /* ... */ };
int f (const D & t) { return /* something calculated from t */; }
template<class T>
class C {
private:
int m_i;
T m_t;
// or first m_t, then m_i -- careless order of declarations
public:
template<class T_>
C (T_ && t) : m_t (std::forward<T_> (t)), m_i (f (t)) {
}
};
C<D> c (D ());
may lead to a bug since the value of t has been moved away when f(t) is called? Is there any way to avoid this problem apart from (i) using a factory function or (ii) introducing a dependency on the order in which m_i and m_t are declared?
f(m_t)? That seems to be the only thing that makes sense, too (think of explicit constructors forT). – Kerrek SB Nov 24 '12 at 17:55fandT_?), but if that's what you need, you have to do it... – Kerrek SB Nov 24 '12 at 18:18C (D && d) : m_t (std::move (d)), m_i (f(d)) {}, I think. – JohnB Nov 24 '12 at 18:36