mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
cmLinkedTree: Add operator* to the iterator.
This commit is contained in:
@@ -87,6 +87,24 @@ public:
|
||||
return this->Tree->GetPointer(this->Position - 1);
|
||||
}
|
||||
|
||||
ReferenceType operator*() const
|
||||
{
|
||||
assert(this->Tree);
|
||||
assert(this->Tree->UpPositions.size() == this->Tree->Data.size());
|
||||
assert(this->Position <= this->Tree->Data.size());
|
||||
assert(this->Position > 0);
|
||||
return this->Tree->GetReference(this->Position - 1);
|
||||
}
|
||||
|
||||
ReferenceType operator*()
|
||||
{
|
||||
assert(this->Tree);
|
||||
assert(this->Tree->UpPositions.size() == this->Tree->Data.size());
|
||||
assert(this->Position <= this->Tree->Data.size());
|
||||
assert(this->Position > 0);
|
||||
return this->Tree->GetReference(this->Position - 1);
|
||||
}
|
||||
|
||||
bool operator==(iterator other) const
|
||||
{
|
||||
assert(this->Tree);
|
||||
|
||||
Reference in New Issue
Block a user