summaryrefslogtreecommitdiff
path: root/include/clang/Basic/VirtualFileSystem.h
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 /include/clang/Basic/VirtualFileSystem.h
parent0bb7cf3383d769e85f734162d30b74ef5bf0471d (diff)
downloadclang-de49053bc1fc8082b3a2248389af9d53e2a9daa3.tar.gz
clang-de49053bc1fc8082b3a2248389af9d53e2a9daa3.tar.bz2
clang-de49053bc1fc8082b3a2248389af9d53e2a9daa3.tar.xz
[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 'include/clang/Basic/VirtualFileSystem.h')
-rw-r--r--include/clang/Basic/VirtualFileSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/VirtualFileSystem.h b/include/clang/Basic/VirtualFileSystem.h
index a486b5bc89..3d33c630fe 100644
--- a/include/clang/Basic/VirtualFileSystem.h
+++ b/include/clang/Basic/VirtualFileSystem.h
@@ -15,8 +15,8 @@
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
-#include "llvm/Support/FileSystem.h"
#include "llvm/Support/ErrorOr.h"
+#include "llvm/Support/FileSystem.h"
#include "llvm/Support/SourceMgr.h"
namespace llvm {