diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:31:12 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:31:12 +0000 |
commit | b5a4c50a03d99be035e8da14ed759ed4efa4e368 (patch) | |
tree | b874708c0b6e2108b0b24c55713714031eb9a056 /libcxx/test/language.support/support.exception | |
parent | 0022123b9508ec5a37a1965abd71d20a36d47238 (diff) | |
download | bcm5719-llvm-b5a4c50a03d99be035e8da14ed759ed4efa4e368.tar.gz bcm5719-llvm-b5a4c50a03d99be035e8da14ed759ed4efa4e368.zip |
Fixing whitespace problems
llvm-svn: 111760
Diffstat (limited to 'libcxx/test/language.support/support.exception')
6 files changed, 8 insertions, 8 deletions
diff --git a/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/set_terminate.pass.cpp b/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/set_terminate.pass.cpp index 9a2c549795b..bb70f334aec 100644 --- a/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/set_terminate.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/set_terminate.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test set_terminate #include <exception> diff --git a/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp b/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp index 53ec32c078c..9b5302585ba 100644 --- a/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test terminate_handler #include <exception> diff --git a/libcxx/test/language.support/support.exception/exception.terminate/terminate/terminate.pass.cpp b/libcxx/test/language.support/support.exception/exception.terminate/terminate/terminate.pass.cpp index 9ba1c80b3a5..9d3ba126d48 100644 --- a/libcxx/test/language.support/support.exception/exception.terminate/terminate/terminate.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.terminate/terminate/terminate.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test terminate #include <exception> diff --git a/libcxx/test/language.support/support.exception/exception.unexpected/set.unexpected/set_unexpected.pass.cpp b/libcxx/test/language.support/support.exception/exception.unexpected/set.unexpected/set_unexpected.pass.cpp index 59ba90bc194..c113f6f2dfc 100644 --- a/libcxx/test/language.support/support.exception/exception.unexpected/set.unexpected/set_unexpected.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.unexpected/set.unexpected/set_unexpected.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test set_unexpected #include <exception> @@ -25,9 +25,9 @@ int main() { std::unexpected_handler old = std::set_unexpected(f1); // verify there is a previous unexpected handler - assert(old); + assert(old); // verify f1 was replace with f2 - assert(std::set_unexpected(f2) == f1); + assert(std::set_unexpected(f2) == f1); // verify calling original unexpected handler calls terminate std::set_terminate(f3); (*old)(); diff --git a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp b/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp index da1dd4f43a4..50b3d346697 100644 --- a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test unexpected_handler #include <exception> diff --git a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected/unexpected.pass.cpp b/libcxx/test/language.support/support.exception/exception.unexpected/unexpected/unexpected.pass.cpp index c960c0cc5de..67cf90ae286 100644 --- a/libcxx/test/language.support/support.exception/exception.unexpected/unexpected/unexpected.pass.cpp +++ b/libcxx/test/language.support/support.exception/exception.unexpected/unexpected/unexpected.pass.cpp @@ -6,7 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// - + // test unexpected #include <exception> |