Add a couple more std-qualifers.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@121002 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/src/exception.cpp b/src/exception.cpp
index 6c389c2..4d4caf4 100644
--- a/src/exception.cpp
+++ b/src/exception.cpp
@@ -38,7 +38,7 @@
void
std::unexpected()
{
- (*get_unexpected())();
+ (*std::get_unexpected())();
// unexpected handler should not return
std::terminate();
}
@@ -62,7 +62,7 @@
try
{
#endif // _LIBCPP_NO_EXCEPTIONS
- (*get_terminate())();
+ (*std::get_terminate())();
// handler should not return
::abort ();
#ifndef _LIBCPP_NO_EXCEPTIONS