mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add const to some member functions of SuccIterator.
The operator+() and operator-() do not change the member variables of SuccIterator. This CL will qualify the *this* pointer with const. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201933 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7101ebc86
commit
8c0eb3eee8
@ -208,7 +208,7 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Self operator+(int Right) {
|
inline Self operator+(int Right) const {
|
||||||
Self tmp = *this;
|
Self tmp = *this;
|
||||||
tmp += Right;
|
tmp += Right;
|
||||||
return tmp;
|
return tmp;
|
||||||
@ -218,11 +218,11 @@ public:
|
|||||||
return operator+=(-Right);
|
return operator+=(-Right);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Self operator-(int Right) {
|
inline Self operator-(int Right) const {
|
||||||
return operator+(-Right);
|
return operator+(-Right);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline int operator-(const Self& x) {
|
inline int operator-(const Self& x) const {
|
||||||
assert(Term == x.Term && "Cannot work on iterators of different blocks!");
|
assert(Term == x.Term && "Cannot work on iterators of different blocks!");
|
||||||
int distance = idx - x.idx;
|
int distance = idx - x.idx;
|
||||||
return distance;
|
return distance;
|
||||||
|
Loading…
Reference in New Issue
Block a user