[cfe-commits] [libcxx] r140253 - /libcxx/trunk/src/exception.cpp
Howard Hinnant
hhinnant at apple.com
Wed Sep 21 08:12:26 PDT 2011
Author: hhinnant
Date: Wed Sep 21 10:12:26 2011
New Revision: 140253
URL: http://llvm.org/viewvc/llvm-project?rev=140253&view=rev
Log:
Correct change to exception.cpp from r140245
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=140253&r1=140252&r2=140253&view=diff
==============================================================================
--- libcxx/trunk/src/exception.cpp (original)
+++ libcxx/trunk/src/exception.cpp Wed Sep 21 10:12:26 2011
@@ -13,7 +13,7 @@
#if __APPLE__
#include <cxxabi.h>
using namespace __cxxabiv1;
- using namespace __cxxabiv1::__cxxabiapple;
+ using namespace __cxxabiapple;
// On Darwin, there are two STL shared libraries and a lower level ABI
// shared libray. The globals holding the current terminate handler and
// current unexpected handler are in the ABI library.
More information about the cfe-commits
mailing list