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
base: fix an old bug affecting range-based for loops on arrays.
undefined
Sam Hocevar
10 years ago
parent
efe8e1d051
commit
ae6f66e883
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/lol/base/array.h
+ 1
- 1
src/lol/base/array.h
View File
@@ -415,7 +415,7 @@ public:
return m_pos != that.m_pos;
}
element_t operator *()
element_t
&
operator *()
{
return (*m_array)[m_pos];
}
Write
Preview
Loading…
Cancel
Save