tfiala created this revision.
tfiala added a reviewer: dexonsmith.
tfiala added subscribers: lldb-commits, llvm-commits.

This change replaces angle brackets with quotes for a non-system header that is 
being included like a system one.  The existing behavior breaks the LLDB Xcode 
build.

I think build break fixes are eligible for post-commit review, but since I 
hardly touch LLVM, I'm preferring to be safe rather than sorry.

https://reviews.llvm.org/D23747

Files:
  include/llvm/ADT/ilist_node.h

Index: include/llvm/ADT/ilist_node.h
===================================================================
--- include/llvm/ADT/ilist_node.h
+++ include/llvm/ADT/ilist_node.h
@@ -15,7 +15,7 @@
 #ifndef LLVM_ADT_ILIST_NODE_H
 #define LLVM_ADT_ILIST_NODE_H
 
-#include <llvm/ADT/PointerIntPair.h>
+#include "llvm/ADT/PointerIntPair.h"
 
 namespace llvm {
 


Index: include/llvm/ADT/ilist_node.h
===================================================================
--- include/llvm/ADT/ilist_node.h
+++ include/llvm/ADT/ilist_node.h
@@ -15,7 +15,7 @@
 #ifndef LLVM_ADT_ILIST_NODE_H
 #define LLVM_ADT_ILIST_NODE_H
 
-#include <llvm/ADT/PointerIntPair.h>
+#include "llvm/ADT/PointerIntPair.h"
 
 namespace llvm {
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to