[llvm] r216812 - Fixed a build problem when there were headers
Sean Callanan
scallanan at apple.com
Fri Aug 29 19:30:02 PDT 2014
Author: spyffe
Date: Fri Aug 29 21:30:02 2014
New Revision: 216812
URL: http://llvm.org/viewvc/llvm-project?rev=216812&view=rev
Log:
Fixed a build problem when there were headers
for a different LLVM present in the system header
lookup path.
Modified:
llvm/trunk/include/llvm/Support/EndianStream.h
Modified: llvm/trunk/include/llvm/Support/EndianStream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/EndianStream.h?rev=216812&r1=216811&r2=216812&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/EndianStream.h (original)
+++ llvm/trunk/include/llvm/Support/EndianStream.h Fri Aug 29 21:30:02 2014
@@ -15,8 +15,8 @@
#ifndef LLVM_SUPPORT_ENDIANSTREAM_H
#define LLVM_SUPPORT_ENDIANSTREAM_H
-#include <llvm/Support/Endian.h>
-#include <llvm/Support/raw_ostream.h>
+#include "llvm/Support/Endian.h"
+#include "llvm/Support/raw_ostream.h"
namespace llvm {
namespace support {
More information about the llvm-commits
mailing list