Author: Wim Lavrijsen <wlavrij...@lbl.gov> Branch: reflex-support Changeset: r71122:ba929dab8b1f Date: 2014-04-30 17:24 -0700 http://bitbucket.org/pypy/pypy/changeset/ba929dab8b1f/
Log: fix warning message diff --git a/pypy/module/cppyy/test/datatypes.h b/pypy/module/cppyy/test/datatypes.h --- a/pypy/module/cppyy/test/datatypes.h +++ b/pypy/module/cppyy/test/datatypes.h @@ -16,9 +16,9 @@ class four_vector { public: four_vector(double x, double y, double z, double t) : - m_x(x), m_y(y), m_z(z), m_t(t), m_cc_called(false) {} + m_cc_called(false), m_x(x), m_y(y), m_z(z), m_t(t) {} four_vector(const four_vector& s) : - m_x(s.m_x), m_y(s.m_y), m_z(s.m_z), m_t(s.m_t), m_cc_called(true) {} + m_cc_called(true), m_x(s.m_x), m_y(s.m_y), m_z(s.m_z), m_t(s.m_t) {} double operator[](int i) { if (i == 0) return m_x; _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit