Uses quote to include cxxabi.h to make sure the local one is included
authorMehdi Amini <mehdi.amini@apple.com>
Tue, 4 Apr 2017 05:38:38 +0000 (05:38 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Tue, 4 Apr 2017 05:38:38 +0000 (05:38 +0000)
llvm-svn: 299414

libcxxabi/src/cxa_exception.hpp
libcxxabi/src/cxa_unexpected.cpp

index 17e6c50..c009db4 100644 (file)
@@ -15,7 +15,7 @@
 #define _CXA_EXCEPTION_H
 
 #include <exception> // for std::unexpected_handler and std::terminate_handler
-#include <cxxabi.h>
+#include "cxxabi.h"
 #include "unwind.h"
 
 namespace __cxxabiv1 {
index 9b72bfd..7d4ef80 100644 (file)
@@ -8,7 +8,7 @@
 //===----------------------------------------------------------------------===//
 
 #include <exception>
-#include <cxxabi.h>
+#include "cxxabi.h"
 #include "cxa_exception.hpp"
 
 namespace __cxxabiv1