summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-17 21:12:16 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-05-18 19:25:48 (GMT)
commit9b4aefad41218866e392021b6d7239b2eeb50390 (patch)
tree81fceeece3888e6905fb3ca73ebddcfcb48fe499 /Source/cmMakefile.cxx
parent00ccfff2bc06e640a185fb3d628ac36ea0b0fe9a (diff)
downloadCMake-9b4aefad41218866e392021b6d7239b2eeb50390.zip
CMake-9b4aefad41218866e392021b6d7239b2eeb50390.tar.gz
CMake-9b4aefad41218866e392021b6d7239b2eeb50390.tar.bz2
cmMakefile: Replace deques with vectors.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 7b8d3af..272ac4c 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -4371,7 +4371,7 @@ std::string cmMakefile::GetListFileStack() const
size_t depth = this->ListFileStack.size();
if (depth > 0)
{
- std::deque<std::string>::const_iterator it = this->ListFileStack.end();
+ std::vector<std::string>::const_iterator it = this->ListFileStack.end();
do
{
if (depth != this->ListFileStack.size())