diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-12-06 15:11:48 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-12-06 15:11:48 +0000 |
commit | fd18df5b2e03a03824934a3561039950306e6f12 (patch) | |
tree | 68c530ccdf00d0a232477d93411384c8076b8858 /libcxx/src/exception.cpp | |
parent | 884d58a798df3d43fd92a0d314ceb00ec7ba503f (diff) | |
download | bcm5719-llvm-fd18df5b2e03a03824934a3561039950306e6f12.tar.gz bcm5719-llvm-fd18df5b2e03a03824934a3561039950306e6f12.zip |
Add a couple more std-qualifers.
llvm-svn: 121002
Diffstat (limited to 'libcxx/src/exception.cpp')
-rw-r--r-- | libcxx/src/exception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/src/exception.cpp b/libcxx/src/exception.cpp index 6c389c28082..4d4caf4b5ce 100644 --- a/libcxx/src/exception.cpp +++ b/libcxx/src/exception.cpp @@ -38,7 +38,7 @@ std::get_unexpected() throw() void std::unexpected() { - (*get_unexpected())(); + (*std::get_unexpected())(); // unexpected handler should not return std::terminate(); } @@ -62,7 +62,7 @@ std::terminate() try { #endif // _LIBCPP_NO_EXCEPTIONS - (*get_terminate())(); + (*std::get_terminate())(); // handler should not return ::abort (); #ifndef _LIBCPP_NO_EXCEPTIONS |