forked from OSchip/llvm-project
Simplify the MCInst operator iterator declaration.
llvm-svn: 179541
This commit is contained in:
parent
02fc72d47a
commit
2783ca4fb7
|
@ -171,7 +171,7 @@ public:
|
|||
void clear() { Operands.clear(); }
|
||||
size_t size() { return Operands.size(); }
|
||||
|
||||
typedef SmallVector<MCOperand, 8>::iterator iterator;
|
||||
typedef SmallVectorImpl<MCOperand>::iterator iterator;
|
||||
iterator begin() { return Operands.begin(); }
|
||||
iterator end() { return Operands.end(); }
|
||||
iterator insert(iterator I, const MCOperand &Op) {
|
||||
|
|
Loading…
Reference in New Issue