mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Remove redundant '== true' after a comparison.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
55499db9a0
commit
7b07d69958
@ -91,7 +91,7 @@ struct hex_pair_iterator {
|
||||
}
|
||||
|
||||
bool operator ==(const hex_pair_iterator Other) {
|
||||
return (IsDone == Other.IsDone == true) ||
|
||||
return (IsDone == Other.IsDone) ||
|
||||
(Current == Other.Current && End == Other.End);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user