mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-08-22 16:00:50 +00:00
Make DirIterator forward only
This commit is contained in:
parent
32d32f63cb
commit
2a7b8437ed
2 changed files with 1 additions and 13 deletions
|
@ -84,16 +84,6 @@ namespace mchlib {
|
|||
);
|
||||
}
|
||||
|
||||
void DirIterator::decrement() {
|
||||
assert(false); //TODO: write implementation
|
||||
--m_current;
|
||||
}
|
||||
|
||||
void DirIterator::advance (std::size_t parAdvance) {
|
||||
assert(false); //TODO: remove
|
||||
m_current += parAdvance;
|
||||
}
|
||||
|
||||
auto DirIterator::distance_to (const DirIterator& parOther) const -> difference_type {
|
||||
assert(false); //TODO: write implementation
|
||||
return std::distance(m_current, parOther.m_current);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue