Use std::vector for ASTReader's ASTBuffers, instead of std::deque.

llvm-svn: 130487
This commit is contained in:
Sebastian Redl 2011-04-29 08:19:19 +00:00
parent bc9a20949f
commit b00047a475
1 changed files with 1 additions and 1 deletions

View File

@ -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 {