[libcxx-commits] [libcxxabi] fee4891 - [libc++abi] NFC: Use "" instead of <> to include __cxxabi_config.h
    Louis Dionne via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Wed Apr 22 12:53:18 PDT 2020
    
    
  
Author: Louis Dionne
Date: 2020-04-22T15:53:08-04:00
New Revision: fee48910d87260dd1260c58f4713f14d8ceaf34b
URL: https://github.com/llvm/llvm-project/commit/fee48910d87260dd1260c58f4713f14d8ceaf34b
DIFF: https://github.com/llvm/llvm-project/commit/fee48910d87260dd1260c58f4713f14d8ceaf34b.diff
LOG: [libc++abi] NFC: Use "" instead of <> to include __cxxabi_config.h
This is more consistent with how __cxxabi_config.h is included in other
files in libcxxabi/src.
Added: 
    
Modified: 
    libcxxabi/src/cxa_handlers.h
Removed: 
    
################################################################################
diff  --git a/libcxxabi/src/cxa_handlers.h b/libcxxabi/src/cxa_handlers.h
index c8e2e44aee1f..a96d7e5bcf90 100644
--- a/libcxxabi/src/cxa_handlers.h
+++ b/libcxxabi/src/cxa_handlers.h
@@ -12,7 +12,7 @@
 #ifndef _CXA_HANDLERS_H
 #define _CXA_HANDLERS_H
 
-#include <__cxxabi_config.h>
+#include "__cxxabi_config.h"
 
 #include <exception>
 
        
    
    
More information about the libcxx-commits
mailing list