mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Fix the build broken in r231142
I removed the copy ctor, thinking that'd be the end of it - these iterators should be perfectly assignable even from disjoint ranges (as any iterator would be) - exkcept that the member was const. Unconstify it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e8bbce6e0e
commit
7cecca6011
@ -121,7 +121,7 @@ public:
|
|||||||
typedef typename super::reference reference;
|
typedef typename super::reference reference;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const Term_ Term;
|
Term_ Term;
|
||||||
unsigned idx;
|
unsigned idx;
|
||||||
typedef SuccIterator<Term_, BB_> Self;
|
typedef SuccIterator<Term_, BB_> Self;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user