Fix the tests I broke with the last commit. Sorry for the noise

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@222165 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2014-11-17 19:16:57 +00:00
parent 4b3ca8c249
commit 48b428d540
2 changed files with 3 additions and 4 deletions

View File

@@ -43,8 +43,8 @@ int main()
assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+sb))
== (std::pair<II, II>(II(ia+3), II(ib+3))));
assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), II(ib+sb))
== (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3)))));
assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), RAI(ib+sb))
== (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+2))