diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 10:05:20 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 10:05:20 +0000 |
commit | 757fcd6d1f7215be8fb90fd5ae5929efd4c21618 (patch) | |
tree | 7707051ba87b791114bc77b39f2d510f6406c4ae /clang/unittests/Driver/MultilibTest.cpp | |
parent | edc9e38810c94626c8ba78801ef81b0ce61ed502 (diff) | |
download | bcm5719-llvm-757fcd6d1f7215be8fb90fd5ae5929efd4c21618.tar.gz bcm5719-llvm-757fcd6d1f7215be8fb90fd5ae5929efd4c21618.zip |
[cleanup] Re-sort includes with llvm/utils/sort_includes.py and fix
a missing include from CLog.h.
CLog.h referenced most of the core libclang types but never directly
included Index.h that provides them. Previously it got lucky and other
headers were always included first but with the sorting it ended up
first in one case and stopped compiling. Adding the Index.h include
fixes it right up.
llvm-svn: 202810
Diffstat (limited to 'clang/unittests/Driver/MultilibTest.cpp')
-rw-r--r-- | clang/unittests/Driver/MultilibTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/Driver/MultilibTest.cpp b/clang/unittests/Driver/MultilibTest.cpp index 1d8760ddd2f..dceace536f0 100644 --- a/clang/unittests/Driver/MultilibTest.cpp +++ b/clang/unittests/Driver/MultilibTest.cpp @@ -13,9 +13,9 @@ #include "clang/Driver/Multilib.h" #include "clang/Basic/LLVM.h" -#include "gtest/gtest.h" -#include "llvm/ADT/StringSwitch.h" #include "llvm/ADT/StringRef.h" +#include "llvm/ADT/StringSwitch.h" +#include "gtest/gtest.h" using namespace clang::driver; using namespace clang; |