[PATCH] D27786: [libcxx] [test] Strip trailing whitespace.
Stephan T. Lavavej via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 14 16:49:34 PST 2016
STL_MSFT created this revision.
STL_MSFT added reviewers: EricWF, mclow.lists.
STL_MSFT added a subscriber: cfe-commits.
[libcxx] [test] Strip trailing whitespace.
https://reviews.llvm.org/D27786
Files:
test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp
test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp
test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp
test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp
test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp
Index: test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp
===================================================================
--- test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp
+++ test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp
@@ -19,7 +19,7 @@
template <typename T>
using callFoo = decltype(std::declval<T&>().Foo());
-
+
struct yesFoo {
int Foo() { return 0; }
};
Index: test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp
===================================================================
--- test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp
+++ test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp
@@ -19,7 +19,7 @@
template <typename T>
using callFoo = decltype(std::declval<T&>().Foo());
-
+
struct yesFoo {
int Foo() { return 0; }
};
Index: test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp
===================================================================
--- test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp
+++ test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp
@@ -19,7 +19,7 @@
template <typename T>
using copy_assign_t = decltype(std::declval<T&>() = std::declval<T const &>());
-
+
struct not_assignable {
not_assignable & operator=(const not_assignable&) = delete;
};
Index: test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp
===================================================================
--- test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp
+++ test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp
@@ -19,7 +19,7 @@
template <typename T>
using callFoo = decltype(std::declval<T&>().Foo());
-
+
struct yesFoo {
int Foo() { return 0; }
};
Index: test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp
===================================================================
--- test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp
+++ test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp
@@ -19,7 +19,7 @@
template <typename T>
using hasFoo = typename T::Foo;
-
+
struct yesFoo {
using Foo = int;
};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27786.81498.patch
Type: text/x-patch
Size: 2331 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20161215/90333874/attachment-0001.bin>
More information about the cfe-commits
mailing list