util/DereferenceIterator: fix static_cast in operator->()
This commit is contained in:
parent
b59170b702
commit
c87a4a7d08
@ -61,7 +61,7 @@ public:
|
||||
}
|
||||
|
||||
pointer operator->() const noexcept {
|
||||
return static_cast<reference>(*original.IT::operator->());
|
||||
return static_cast<pointer>(*original.IT::operator->());
|
||||
}
|
||||
|
||||
auto &operator++() noexcept {
|
||||
|
Loading…
Reference in New Issue
Block a user