diff options
Diffstat (limited to 'include/clang/Serialization/ASTReader.h')
| -rw-r--r-- | include/clang/Serialization/ASTReader.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/include/clang/Serialization/ASTReader.h b/include/clang/Serialization/ASTReader.h index 9377dfac99cc..840655ea43e3 100644 --- a/include/clang/Serialization/ASTReader.h +++ b/include/clang/Serialization/ASTReader.h @@ -362,7 +362,7 @@ private:    SourceManager &SourceMgr;    FileManager &FileMgr; -  const PCHContainerOperations &PCHContainerOps; +  const PCHContainerReader &PCHContainerRdr;    DiagnosticsEngine &Diags;    /// \brief The semantic analysis object that will be processing the @@ -1289,7 +1289,7 @@ public:    /// \param ReadTimer If non-null, a timer used to track the time spent    /// deserializing.    ASTReader(Preprocessor &PP, ASTContext &Context, -            const PCHContainerOperations &PCHContainerOps, +            const PCHContainerReader &PCHContainerRdr,              StringRef isysroot = "", bool DisableValidation = false,              bool AllowASTWithCompilerErrors = false,              bool AllowConfigurationMismatch = false, @@ -1458,7 +1458,7 @@ public:    /// the AST file, without actually loading the AST file.    static std::string    getOriginalSourceFile(const std::string &ASTFileName, FileManager &FileMgr, -                        const PCHContainerOperations &PCHContainerOps, +                        const PCHContainerReader &PCHContainerRdr,                          DiagnosticsEngine &Diags);    /// \brief Read the control block for the named AST file. @@ -1466,13 +1466,13 @@ public:    /// \returns true if an error occurred, false otherwise.    static bool    readASTFileControlBlock(StringRef Filename, FileManager &FileMgr, -                          const PCHContainerOperations &PCHContainerOps, +                          const PCHContainerReader &PCHContainerRdr,                            ASTReaderListener &Listener);    /// \brief Determine whether the given AST file is acceptable to load into a    /// translation unit with the given language and target options.    static bool isAcceptableASTFile(StringRef Filename, FileManager &FileMgr, -                                  const PCHContainerOperations &PCHContainerOps, +                                  const PCHContainerReader &PCHContainerRdr,                                    const LangOptions &LangOpts,                                    const TargetOptions &TargetOpts,                                    const PreprocessorOptions &PPOpts, | 
