From fd18df5b2e03a03824934a3561039950306e6f12 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 6 Dec 2010 15:11:48 +0000 Subject: Add a couple more std-qualifers. llvm-svn: 121002 --- libcxx/src/exception.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcxx/src/exception.cpp') 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 -- cgit v1.2.3