Просмотр исходного кода

math: fix vector iterator member initialisation.

undefined
Sam Hocevar 11 лет назад
Родитель
Сommit
769eea3950
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      src/lol/math/vector.h

+ 2
- 2
src/lol/math/vector.h Просмотреть файл

@@ -1168,8 +1168,8 @@ class vec_const_iter
{
public:
inline vec_const_iter(vec_t<T,N,SWIZZLE> const &vec, int pos)
: m_pos(pos),
m_vec(vec)
: m_vec(vec),
m_pos(pos)
{ }

inline bool operator !=(vec_const_iter<T,N,SWIZZLE> const & that) const


Загрузка…
Отмена
Сохранить