summaryrefslogtreecommitdiffstats
path: root/libcxx/src/exception.cpp
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2010-12-06 15:11:48 +0000
committerHoward Hinnant <hhinnant@apple.com>2010-12-06 15:11:48 +0000
commitfd18df5b2e03a03824934a3561039950306e6f12 (patch)
tree68c530ccdf00d0a232477d93411384c8076b8858 /libcxx/src/exception.cpp
parent884d58a798df3d43fd92a0d314ceb00ec7ba503f (diff)
downloadbcm5719-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.cpp4
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
OpenPOWER on IntegriCloud