diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-06-14 00:12:20 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-06-14 00:12:20 +0000 |
commit | cb0d20519e9713b7443e1bd2917f75f739ccec8d (patch) | |
tree | da34c1bf4578eec92367f3594f11b576dc843212 /libcxx/test/std/re/re.regex | |
parent | 896e499e38b34c81430edeb97e837f7f052423ed (diff) | |
download | bcm5719-llvm-cb0d20519e9713b7443e1bd2917f75f739ccec8d.tar.gz bcm5719-llvm-cb0d20519e9713b7443e1bd2917f75f739ccec8d.zip |
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 334676
Diffstat (limited to 'libcxx/test/std/re/re.regex')
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.construct/deduct.fail.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.construct/deduct.pass.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/test/std/re/re.regex/re.regex.construct/deduct.fail.cpp b/libcxx/test/std/re/re.regex/re.regex.construct/deduct.fail.cpp index c4d60a5a95a..d4dc9e54fc5 100644 --- a/libcxx/test/std/re/re.regex/re.regex.construct/deduct.fail.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.construct/deduct.fail.cpp @@ -26,7 +26,7 @@ int main() -{ +{ // Test the explicit deduction guides { // basic_regex(ForwardIterator, ForwardIterator) diff --git a/libcxx/test/std/re/re.regex/re.regex.construct/deduct.pass.cpp b/libcxx/test/std/re/re.regex/re.regex.construct/deduct.pass.cpp index 5dbd2f11708..31f047c7195 100644 --- a/libcxx/test/std/re/re.regex/re.regex.construct/deduct.pass.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.construct/deduct.pass.cpp @@ -16,7 +16,7 @@ // basic_regex(ForwardIterator, ForwardIterator, // regex_constants::syntax_option_type = regex_constants::ECMAScript) // -> basic_regex<typename iterator_traits<ForwardIterator>::value_type>; - + #include <regex> #include <string> @@ -34,7 +34,7 @@ struct A {}; int main() { - + // Test the explicit deduction guides { // basic_regex(ForwardIterator, ForwardIterator) @@ -54,7 +54,7 @@ int main() assert(re.flags() == std::regex_constants::basic); assert(re.mark_count() == 1); } - + // Test the implicit deduction guides { // basic_regex(string); @@ -87,7 +87,7 @@ int main() assert(re.flags() == std::regex_constants::grep); assert(re.mark_count() == 0); } - + { // basic_regex(const charT*, size_t); std::basic_regex re("ABCDEDEF", 7); |