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:
Duraid Madina 2005-12-30 16:41:48 +00:00
parent 42d24c71df
commit d47ae09dab

View File

@ -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;
}