This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
math: fix vector iterator member initialisation.
undefined
Sam Hocevar
10 years ago
parent
d0e9447ac0
commit
769eea3950
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/lol/math/vector.h
+ 2
- 2
src/lol/math/vector.h
View File
@@ -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
Write
Preview
Loading…
Cancel
Save