diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-09-21 15:12:26 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-09-21 15:12:26 +0000 |
commit | bae9fc983e761cdba0335e7060a263d7ec36ddb3 (patch) | |
tree | d6d12e1703333a09a2240133f8d2261d04f5d9d1 /libcxx/src/exception.cpp | |
parent | 71850c961d86d1cb657a83b98241ee5c35cda21c (diff) | |
download | bcm5719-llvm-bae9fc983e761cdba0335e7060a263d7ec36ddb3.tar.gz bcm5719-llvm-bae9fc983e761cdba0335e7060a263d7ec36ddb3.zip |
Correct change to exception.cpp from r140245
llvm-svn: 140253
Diffstat (limited to 'libcxx/src/exception.cpp')
-rw-r--r-- | libcxx/src/exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/exception.cpp b/libcxx/src/exception.cpp index 9a80d3e92ef..26d97a96082 100644 --- a/libcxx/src/exception.cpp +++ b/libcxx/src/exception.cpp @@ -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. |