From 7a0248d2d71b86fbf4658ca2f8ee1bd7a0601f14 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 6 Dec 2010 15:11:48 +0000 Subject: [PATCH] Add a couple more std-qualifers. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@121002 91177308-0d34-0410-b5e6-96231b3b80d8 --- src/exception.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exception.cpp b/src/exception.cpp index 6c389c280..4d4caf4b5 100644 --- a/src/exception.cpp +++ b/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