diff --git a/src/lol/math/vector.h b/src/lol/math/vector.h index c5aa93a3..6209b156 100644 --- a/src/lol/math/vector.h +++ b/src/lol/math/vector.h @@ -1168,8 +1168,8 @@ class vec_const_iter { public: inline vec_const_iter(vec_t const &vec, int pos) - : m_pos(pos), - m_vec(vec) + : m_vec(vec), + m_pos(pos) { } inline bool operator !=(vec_const_iter const & that) const