mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-21 12:51:20 +00:00
Remove redundant '== true' after a comparison.
llvm-svn: 161223
This commit is contained in:
parent
1663895970
commit
af1a72a830
@ -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…
x
Reference in New Issue
Block a user