[PATCH] D23747: Fix broken macOS LLDB build from r279314
Todd Fiala via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 20 12:08:16 PDT 2016
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 {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23747.68787.patch
Type: text/x-patch
Size: 353 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160820/63ff261b/attachment.bin>
More information about the llvm-commits
mailing list