From 5a403580e38236b540d1a6f9f67737407c8dfa10 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Tue, 4 Apr 2017 05:38:38 +0000 Subject: [PATCH] Uses quote to include cxxabi.h to make sure the local one is included llvm-svn: 299414 --- libcxxabi/src/cxa_exception.hpp | 2 +- libcxxabi/src/cxa_unexpected.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxxabi/src/cxa_exception.hpp b/libcxxabi/src/cxa_exception.hpp index 17e6c50..c009db4 100644 --- a/libcxxabi/src/cxa_exception.hpp +++ b/libcxxabi/src/cxa_exception.hpp @@ -15,7 +15,7 @@ #define _CXA_EXCEPTION_H #include // for std::unexpected_handler and std::terminate_handler -#include +#include "cxxabi.h" #include "unwind.h" namespace __cxxabiv1 { diff --git a/libcxxabi/src/cxa_unexpected.cpp b/libcxxabi/src/cxa_unexpected.cpp index 9b72bfd..7d4ef80 100644 --- a/libcxxabi/src/cxa_unexpected.cpp +++ b/libcxxabi/src/cxa_unexpected.cpp @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// #include -#include +#include "cxxabi.h" #include "cxa_exception.hpp" namespace __cxxabiv1 -- 2.7.4