aboutsummaryrefslogtreecommitdiff
path: root/include/clang
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang')
-rw-r--r--include/clang/Frontend/PCHReader.h4
-rw-r--r--include/clang/Frontend/PCHWriter.h4
2 files changed, 4 insertions, 4 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.
///
diff --git a/include/clang/Frontend/PCHWriter.h b/include/clang/Frontend/PCHWriter.h
index 4d1262223e..96c6c79de4 100644
--- a/include/clang/Frontend/PCHWriter.h
+++ b/include/clang/Frontend/PCHWriter.h
@@ -64,7 +64,7 @@ private:
/// \brief Offset of each declaration in the bitstream, indexed by
/// the declaration's ID.
- llvm::SmallVector<uint64_t, 16> DeclOffsets;
+ std::vector<uint32_t> DeclOffsets;
/// \brief Queue containing the declarations that we still need to
/// emit.
@@ -81,7 +81,7 @@ private:
/// \brief Offset of each type in the bitstream, indexed by
/// the type's ID.
- llvm::SmallVector<uint64_t, 16> TypeOffsets;
+ std::vector<uint32_t> TypeOffsets;
/// \brief The type ID that will be assigned to the next new type.
pch::TypeID NextTypeID;