unchanged

This commit is contained in:
matthias@arch 2022-09-17 19:57:52 +02:00
parent 00e0bc0715
commit 51fb0d572e
8 changed files with 2 additions and 2 deletions

0
gen_enum_str.py Normal file → Executable file
View File

4
src/container/iterator.hpp Normal file → Executable file
View File

@ -16,8 +16,8 @@ struct Iterator {
ptr = other.ptr; ptr = other.ptr;
return *this; return *this;
}; };
Iterator& operator++() { ptr += sizeof(T); return *this; }; Iterator& operator++() { ptr++; return *this; };
Iterator operator++(int) { auto copy = *this; ptr += sizeof(T); return copy; }; Iterator operator++(int) { auto copy = *this; ptr++; return copy; };
friend int operator-(Iterator lhs, Iterator rhs) { friend int operator-(Iterator lhs, Iterator rhs) {
return lhs.ptr - rhs.ptr; return lhs.ptr - rhs.ptr;
}; };

0
src/container/queue.hpp Normal file → Executable file
View File

0
src/container/ringbuffer.hpp Normal file → Executable file
View File

0
src/util/gz_regex.cpp Normal file → Executable file
View File

0
src/util/gz_regex.hpp Normal file → Executable file
View File

0
src/util/util.cpp Normal file → Executable file
View File

0
src/util/util.hpp Normal file → Executable file
View File