Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
iterator.h
Go to the documentation of this file.
1#ifndef MSL_ITERATOR_H_
2#define MSL_ITERATOR_H_
3
4namespace std {
5template< class InputIt, class Distance >
6inline void advance( InputIt& it, Distance n) {
7 while (n > 0) {
8 --n;
9 ++it;
10 }
11}
12
13// This needs to be defined with gcc concepts or something similar. Workaround.
14template< class InputIt, class Distance >
16 it += n;
17}
18
19}
20
21#endif
T cLib_calcTimer(T *value)
Definition c_lib.h:74
n
Definition e_fmod.c:112
Definition d_a_e_wb.cpp:12
void advance(InputIt &it, Distance n)
Definition iterator.h:6
void advance_pointer(InputIt &it, Distance n)
Definition iterator.h:15