diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-12 23:52:11 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-12 23:52:11 +0000 |
commit | eb19485625c7529ffa644e10829533157a8e8d4f (patch) | |
tree | bbce8335c77e3ab9c5c5bcea4c9d1887c5d39ff5 | |
parent | 3b4ea54acf01f72f6eb74d96689dda86d950228f (diff) |
Match declaration to definition.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75441 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Frontend/ASTConsumers.h | 2 | ||||
-rw-r--r-- | include/clang/Frontend/PCHReader.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/ASTConsumers.h b/include/clang/Frontend/ASTConsumers.h index fe5a198880..87c85e067f 100644 --- a/include/clang/Frontend/ASTConsumers.h +++ b/include/clang/Frontend/ASTConsumers.h @@ -30,7 +30,7 @@ class Diagnostic; class FileManager; class Preprocessor; class PreprocessorFactory; -struct CompileOptions; +class CompileOptions; class LangOptions; // AST pretty-printer: prints out the AST in a format that is close to the diff --git a/include/clang/Frontend/PCHReader.h b/include/clang/Frontend/PCHReader.h index aa984175e0..2ddf13fcf1 100644 --- a/include/clang/Frontend/PCHReader.h +++ b/include/clang/Frontend/PCHReader.h @@ -55,7 +55,7 @@ class Preprocessor; class Sema; class SwitchCase; class PCHReader; -class HeaderFileInfo; +struct HeaderFileInfo; /// \brief Abstract interface for callback invocations by the PCHReader. /// |