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/language.support/support.exception | |
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/language.support/support.exception')
-rw-r--r-- | libcxx/test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp b/libcxx/test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp index 0a63a47429a..d030d12d263 100644 --- a/libcxx/test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp @@ -47,7 +47,7 @@ int main () { { Outer o(0); } - + assert(std::uncaught_exceptions() == 0); { try { @@ -56,7 +56,7 @@ int main () { } catch (int) { assert(std::uncaught_exceptions() == 0); - } + } } assert(std::uncaught_exceptions() == 0); } |