Remove trailing whitespace in test suite. Approved by Marshall Clow.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@271435 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -49,14 +49,14 @@ int main()
|
||||
const C c = {1, 2, 3.5};
|
||||
C::const_reference r1 = c.at(0);
|
||||
assert(r1 == 1);
|
||||
|
||||
|
||||
C::const_reference r2 = c.at(2);
|
||||
assert(r2 == 3.5);
|
||||
|
||||
try { (void) c.at(3); }
|
||||
catch (const std::out_of_range &) {}
|
||||
}
|
||||
|
||||
|
||||
#if TEST_STD_VER > 11
|
||||
{
|
||||
typedef double T;
|
||||
|
||||
Reference in New Issue
Block a user