Code review comment for lp:~aacid/unity8/fixuninitializedvalues

Revision history for this message
Michael Zanetti (mzanetti) wrote :

6 template <class Type> class Damper {
7 public:
8 + Damper() : m_value(0), m_maxDelta(0) { }

I think this breaks compilation for non-numeric templates like Damper<QString> . I agree that the whole class is not really useful anyways in such cases...

« Back to merge proposal