[libcxx] [test] Strip trailing whitespace, NFC.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@324959 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -35,11 +35,11 @@ TEST_CONSTEXPR bool test_constexpr() {
|
||||
auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic));
|
||||
if (p1.first != ia+2 || p1.second != ic+2)
|
||||
return false;
|
||||
|
||||
|
||||
auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic));
|
||||
if (p2.first != ia+2 || p2.second != ic+2)
|
||||
return false;
|
||||
|
||||
|
||||
auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic));
|
||||
if (p3.first != ib+2 || p3.second != ic+2)
|
||||
return false;
|
||||
@@ -55,7 +55,7 @@ TEST_CONSTEXPR bool test_constexpr() {
|
||||
if (p6.first != BI(ib+2) || p6.second != BI(ic+2))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user