diff options
author | John McCall <rjmccall@apple.com> | 2010-08-25 08:40:02 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-25 08:40:02 +0000 |
commit | aab3e41eb2391fd6aeb6ff65adc78cf3d015af9f (patch) | |
tree | 6eae086730849fcad1e21036c70a3275857e18cd /clang/lib/Sema/SemaChecking.cpp | |
parent | cfe41db403840e4b929db3e92f938f3da01bd772 (diff) | |
download | bcm5719-llvm-aab3e41eb2391fd6aeb6ff65adc78cf3d015af9f.tar.gz bcm5719-llvm-aab3e41eb2391fd6aeb6ff65adc78cf3d015af9f.zip |
Split FunctionScopeInfo and BlockScopeInfo into their own header.
llvm-svn: 112038
Diffstat (limited to 'clang/lib/Sema/SemaChecking.cpp')
-rw-r--r-- | clang/lib/Sema/SemaChecking.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 7a64511f322..7ea96f4014e 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -13,6 +13,7 @@ //===----------------------------------------------------------------------===// #include "clang/Sema/Sema.h" +#include "clang/Sema/ScopeInfo.h" #include "clang/Analysis/Analyses/FormatString.h" #include "clang/AST/ASTContext.h" #include "clang/AST/CharUnits.h" @@ -32,6 +33,7 @@ #include "clang/Basic/TargetInfo.h" #include <limits> using namespace clang; +using namespace sema; /// getLocationOfStringLiteralByte - Return a source location that points to the /// specified byte of the specified string literal. |