From d1bcd4c73504c98d765531ad6bf259cc35c1437e Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Thu, 17 Oct 2013 09:55:56 +0000 Subject: [PATCH] Remove unicode characters, trailing whitespace from test case git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192877 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaCXX/type-traits.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/SemaCXX/type-traits.cpp b/test/SemaCXX/type-traits.cpp index 1dc215625c..d73b2d8995 100644 --- a/test/SemaCXX/type-traits.cpp +++ b/test/SemaCXX/type-traits.cpp @@ -1247,14 +1247,14 @@ void has_trivial_default_constructor() { void has_trivial_move_constructor() { // n3376 12.8 [class.copy]/12 - // A copy/move constructor for class X is trivial if it is not - // user-provided, its declared parameter type is the same as + // A copy/move constructor for class X is trivial if it is not + // user-provided, its declared parameter type is the same as // if it had been implicitly declared, and if - // — class X has no virtual functions (10.3) and no virtual + // - class X has no virtual functions (10.3) and no virtual // base classes (10.1), and - // — the constructor selected to copy/move each direct base + // - the constructor selected to copy/move each direct base // class subobject is trivial, and - // — for each non-static data member of X that is of class + // - for each non-static data member of X that is of class // type (or array thereof), the constructor selected // to copy/move that member is trivial; // otherwise the copy/move constructor is non-trivial. @@ -1448,14 +1448,14 @@ void has_nothrow_move_assign() { void has_trivial_move_assign() { // n3376 12.8 [class.copy]/25 - // A copy/move assignment operator for class X is trivial if it - // is not user-provided, its declared parameter type is the same + // A copy/move assignment operator for class X is trivial if it + // is not user-provided, its declared parameter type is the same // as if it had been implicitly declared, and if: - // — class X has no virtual functions (10.3) and no virtual base + // - class X has no virtual functions (10.3) and no virtual base // classes (10.1), and - // — the assignment operator selected to copy/move each direct + // - the assignment operator selected to copy/move each direct // base class subobject is trivial, and - // — for each non-static data member of X that is of class type + // - for each non-static data member of X that is of class type // (or array thereof), the assignment operator // selected to copy/move that member is trivial; { int arr[T(__has_trivial_move_assign(Int))]; } -- 2.40.0