瀏覽代碼

math: fix vector iterator member initialisation.

undefined
Sam Hocevar 10 年之前
父節點
當前提交
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


Loading…
取消
儲存