diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-12 20:55:44 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-12-12 20:55:44 +0000 |
commit | 11b07f66b0633b838d18288141de59feb761f225 (patch) | |
tree | af78e6797834b171cd6cacd06e5a57d7bd46adc4 /lib/Support | |
parent | 63522b1998289e694385a45a719313c95f3350cf (diff) | |
download | external_llvm-11b07f66b0633b838d18288141de59feb761f225.zip external_llvm-11b07f66b0633b838d18288141de59feb761f225.tar.gz external_llvm-11b07f66b0633b838d18288141de59feb761f225.tar.bz2 |
Fix the build on case sensitive file systems.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/YAMLTraits.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Support/YAMLTraits.cpp b/lib/Support/YAMLTraits.cpp index e2be15b..c200004 100644 --- a/lib/Support/YAMLTraits.cpp +++ b/lib/Support/YAMLTraits.cpp @@ -9,14 +9,12 @@ #define BUILDING_YAMLIO #include "llvm/Support/YAMLTraits.h" - #include "llvm/ADT/Twine.h" #include "llvm/Support/Casting.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/format.h" -#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/Format.h" #include "llvm/Support/YAMLParser.h" - +#include "llvm/Support/raw_ostream.h" #include <cstring> namespace llvm { |