mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Fix Windows build after r159281: s/iterator/const_iterator
llvm-svn: 159334
This commit is contained in:
parent
ce08859a5a
commit
6cc7a384bc
@ -262,7 +262,7 @@ void State::AddInsnClass(unsigned InsnClass,
|
||||
// be added to the packet represented by this state.
|
||||
//
|
||||
bool State::canAddInsnClass(unsigned InsnClass) const {
|
||||
for (std::set<unsigned>::iterator SI = stateInfo.begin();
|
||||
for (std::set<unsigned>::const_iterator SI = stateInfo.begin();
|
||||
SI != stateInfo.end(); ++SI) {
|
||||
if (~*SI & InsnClass)
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user