diff options
author | John McCall <rjmccall@apple.com> | 2010-08-20 18:27:03 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-20 18:27:03 +0000 |
commit | 8b0666cf7910b9a10f57af8b5597a61e67fe8e89 (patch) | |
tree | ce1c9bee64b70777200c85581ef5307f9434e3e5 /clang/lib/Sema/CodeCompleteConsumer.cpp | |
parent | b145bbaf4b8b7d3ea0997d43d3f1bc65085a6ece (diff) | |
download | bcm5719-llvm-8b0666cf7910b9a10f57af8b5597a61e67fe8e89.tar.gz bcm5719-llvm-8b0666cf7910b9a10f57af8b5597a61e67fe8e89.zip |
Another step in the process of making the parser depend on Sema:
- move DeclSpec &c into the Sema library
- move ParseAST into the Parse library
Reflect this change in a thousand different includes.
Reflect this change in the link orders.
llvm-svn: 111667
Diffstat (limited to 'clang/lib/Sema/CodeCompleteConsumer.cpp')
-rw-r--r-- | clang/lib/Sema/CodeCompleteConsumer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/CodeCompleteConsumer.cpp b/clang/lib/Sema/CodeCompleteConsumer.cpp index c1b666a792a..29d97a24145 100644 --- a/clang/lib/Sema/CodeCompleteConsumer.cpp +++ b/clang/lib/Sema/CodeCompleteConsumer.cpp @@ -11,9 +11,9 @@ // //===----------------------------------------------------------------------===// #include "clang/Sema/CodeCompleteConsumer.h" +#include "clang/Sema/Scope.h" #include "clang/Sema/Sema.h" #include "clang/AST/DeclCXX.h" -#include "clang/Parse/Scope.h" #include "clang/Lex/Preprocessor.h" #include "clang-c/Index.h" #include "llvm/ADT/STLExtras.h" |