diff options
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Lex/PTHManager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/Lex/PTHManager.h b/include/clang/Lex/PTHManager.h index c9b7b52ec1..e0c4776d4b 100644 --- a/include/clang/Lex/PTHManager.h +++ b/include/clang/Lex/PTHManager.h @@ -38,7 +38,7 @@ class PTHManager { /// IdMap - A lazily generated cache mapping from persistent identifiers to /// IdentifierInfo*. - void* PerIDCache; + IdentifierInfo** PerIDCache; /// FileLookup - Abstract data structure used for mapping between files /// and token data in the PTH file. @@ -59,7 +59,8 @@ class PTHManager { /// This constructor is intended to only be called by the static 'Create' /// method. PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup, - const char* idDataTable, void* perIDCache, Preprocessor& pp); + const char* idDataTable, IdentifierInfo** perIDCache, + Preprocessor& pp); // Do not implement. PTHManager(); |