diff options
Diffstat (limited to 'clang/include/clang/Frontend/PCHReader.h')
-rw-r--r-- | clang/include/clang/Frontend/PCHReader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/Frontend/PCHReader.h b/clang/include/clang/Frontend/PCHReader.h index a32be0dd7b4..cade8af2259 100644 --- a/clang/include/clang/Frontend/PCHReader.h +++ b/clang/include/clang/Frontend/PCHReader.h @@ -327,9 +327,9 @@ public: /// supplements. ASTContext &getContext() { return Context; } - // FIXME: temporary hack to store declarations that we deserialized - // before we had access to the Sema object. - llvm::SmallVector<NamedDecl *, 16> TUDecls; + // \brief Contains declarations that were loaded before we have + // access to a Sema object. + llvm::SmallVector<NamedDecl *, 16> PreloadedDecls; /// \brief Retrieve the semantic analysis object used to analyze the /// translation unit in which the precompiled header is being |