[cfe-commits] [libcxx] r121002 - /libcxx/trunk/src/exception.cpp
Howard Hinnant
hhinnant at apple.com
Mon Dec 6 07:11:48 PST 2010
Author: hhinnant
Date: Mon Dec 6 09:11:48 2010
New Revision: 121002
URL: http://llvm.org/viewvc/llvm-project?rev=121002&view=rev
Log:
Add a couple more std-qualifers.
Modified:
libcxx/trunk/src/exception.cpp
Modified: libcxx/trunk/src/exception.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/exception.cpp?rev=121002&r1=121001&r2=121002&view=diff
==============================================================================
--- libcxx/trunk/src/exception.cpp (original)
+++ libcxx/trunk/src/exception.cpp Mon Dec 6 09:11:48 2010
@@ -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
More information about the cfe-commits
mailing list