forked from OSchip/llvm-project
Use std::vector for ASTReader's ASTBuffers, instead of std::deque.
llvm-svn: 130487
This commit is contained in:
parent
bc9a20949f
commit
b00047a475
|
@ -216,7 +216,7 @@ private:
|
|||
|
||||
/// \brief AST buffers for chained PCHs created and stored in memory.
|
||||
/// First (not depending on another) PCH in chain is in front.
|
||||
std::deque<llvm::MemoryBuffer *> ASTBuffers;
|
||||
std::vector<llvm::MemoryBuffer *> ASTBuffers;
|
||||
|
||||
/// \brief Information that is needed for every module.
|
||||
struct PerFileData {
|
||||
|
|
Loading…
Reference in New Issue