Add a couple more std-qualifers.

llvm-svn: 121002
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: fd18df5b2e03a03824934a3561039950306e6f12
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