unchanged
This commit is contained in:
parent
00e0bc0715
commit
51fb0d572e
0
gen_enum_str.py
Normal file → Executable file
0
gen_enum_str.py
Normal file → Executable file
4
src/container/iterator.hpp
Normal file → Executable file
4
src/container/iterator.hpp
Normal file → Executable file
@ -16,8 +16,8 @@ struct Iterator {
|
||||
ptr = other.ptr;
|
||||
return *this;
|
||||
};
|
||||
Iterator& operator++() { ptr += sizeof(T); return *this; };
|
||||
Iterator operator++(int) { auto copy = *this; ptr += sizeof(T); return copy; };
|
||||
Iterator& operator++() { ptr++; return *this; };
|
||||
Iterator operator++(int) { auto copy = *this; ptr++; return copy; };
|
||||
friend int operator-(Iterator lhs, Iterator rhs) {
|
||||
return lhs.ptr - rhs.ptr;
|
||||
};
|
||||
|
0
src/container/queue.hpp
Normal file → Executable file
0
src/container/queue.hpp
Normal file → Executable file
0
src/container/ringbuffer.hpp
Normal file → Executable file
0
src/container/ringbuffer.hpp
Normal file → Executable file
0
src/util/gz_regex.cpp
Normal file → Executable file
0
src/util/gz_regex.cpp
Normal file → Executable file
0
src/util/gz_regex.hpp
Normal file → Executable file
0
src/util/gz_regex.hpp
Normal file → Executable file
0
src/util/util.cpp
Normal file → Executable file
0
src/util/util.cpp
Normal file → Executable file
0
src/util/util.hpp
Normal file → Executable file
0
src/util/util.hpp
Normal file → Executable file
Loading…
Reference in New Issue
Block a user