diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-12 16:54:37 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-12 16:54:37 +0000 |
commit | 9946fc735d7285f2195f89635370f534afd9877e (patch) | |
tree | e04b59f9139ab06899607f1fc77e54cf8de7dd9d /include/clang/Lex/ExternalPreprocessorSource.h | |
parent | 6dcea67483a72e47db0a382e8d073340927ac27f (diff) |
Add missing includes and forward declarations so that headers don't depend on
other headers included before them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172320 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/ExternalPreprocessorSource.h')
-rw-r--r-- | include/clang/Lex/ExternalPreprocessorSource.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Lex/ExternalPreprocessorSource.h b/include/clang/Lex/ExternalPreprocessorSource.h index d2e2412192..d9a4de4d99 100644 --- a/include/clang/Lex/ExternalPreprocessorSource.h +++ b/include/clang/Lex/ExternalPreprocessorSource.h @@ -15,7 +15,9 @@ #define LLVM_CLANG_LEX_EXTERNAL_PREPROCESSOR_SOURCE_H namespace clang { - + +class IdentifierInfo; + /// \brief Abstract interface for external sources of preprocessor /// information. /// |