[libcxxabi] r299414 - Uses quote to include cxxabi.h to make sure the local one is included
Mehdi Amini via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 3 22:38:39 PDT 2017
Author: mehdi_amini
Date: Tue Apr 4 00:38:38 2017
New Revision: 299414
URL: http://llvm.org/viewvc/llvm-project?rev=299414&view=rev
Log:
Uses quote to include cxxabi.h to make sure the local one is included
Modified:
libcxxabi/trunk/src/cxa_exception.hpp
libcxxabi/trunk/src/cxa_unexpected.cpp
Modified: libcxxabi/trunk/src/cxa_exception.hpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_exception.hpp?rev=299414&r1=299413&r2=299414&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_exception.hpp (original)
+++ libcxxabi/trunk/src/cxa_exception.hpp Tue Apr 4 00:38:38 2017
@@ -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 {
Modified: libcxxabi/trunk/src/cxa_unexpected.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_unexpected.cpp?rev=299414&r1=299413&r2=299414&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_unexpected.cpp (original)
+++ libcxxabi/trunk/src/cxa_unexpected.cpp Tue Apr 4 00:38:38 2017
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
#include <exception>
-#include <cxxabi.h>
+#include "cxxabi.h"
#include "cxa_exception.hpp"
namespace __cxxabiv1
More information about the cfe-commits
mailing list