diff options
Diffstat (limited to 'include/clang/Frontend/PCHReader.h')
-rw-r--r-- | include/clang/Frontend/PCHReader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Frontend/PCHReader.h b/include/clang/Frontend/PCHReader.h index fed169354e..07f2bb260f 100644 --- a/include/clang/Frontend/PCHReader.h +++ b/include/clang/Frontend/PCHReader.h @@ -116,7 +116,7 @@ private: /// \brief Offset of each type within the bitstream, indexed by the /// type ID, or the representation of a Type*. - const uint64_t *TypeOffsets; + const uint32_t *TypeOffsets; /// \brief Types that have already been loaded from the PCH file. /// @@ -126,7 +126,7 @@ private: /// \brief Offset of each declaration within the bitstream, indexed /// by the declaration ID (-1). - const uint64_t *DeclOffsets; + const uint32_t *DeclOffsets; /// \brief Declarations that have already been loaded from the PCH file. /// |