summaryrefslogtreecommitdiff
path: root/unittests/Driver
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 10:05:20 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 10:05:20 +0000
commitde49053bc1fc8082b3a2248389af9d53e2a9daa3 (patch)
tree1c0d72341985258225d457960288e9cee9ffc22d /unittests/Driver
parent0bb7cf3383d769e85f734162d30b74ef5bf0471d (diff)
downloadclang-de49053bc1fc8082b3a2248389af9d53e2a9daa3.tar.gz
[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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202810 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Driver')
-rw-r--r--unittests/Driver/MultilibTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Driver/MultilibTest.cpp b/unittests/Driver/MultilibTest.cpp
index 1d8760ddd2..dceace536f 100644
--- a/unittests/Driver/MultilibTest.cpp
+++ b/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;