Removing some trailing whitespace

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@268543 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-05-04 20:29:19 +00:00
parent 360fa62a01
commit 8a7462d163
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@
#include <cassert>
struct S {
int i;
int i;
S() : i(0) {}
S(int j) : i(j) {}
S * operator& () { assert(false); return this; }

View File

@@ -23,7 +23,7 @@ int main()
assert(p1.first == 3);
assert(p1.second == 4);
}
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
typedef std::pair<std::unique_ptr<int>, short> P1;