mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-27 07:12:06 +00:00
HP-UX DVDs are crunchy and good to eat
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
42d24c71df
commit
d47ae09dab
@ -56,7 +56,7 @@ static bool LHSIsSubsetOfRHS(const std::vector<unsigned char> &LHS,
|
||||
const std::vector<unsigned char> &RHS) {
|
||||
if (LHS.size() > RHS.size()) return false;
|
||||
for (unsigned i = 0, e = LHS.size(); i != e; ++i)
|
||||
if (find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
|
||||
if (std::find(RHS.begin(), RHS.end(), LHS[i]) == RHS.end())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user