diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-12 00:44:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-12 18:09:47 (GMT) |
commit | 57dd094eded03a94402b6eecf7027325bd7b5136 (patch) | |
tree | c0690faf3bb1a2772344502e9ca8934fa625c53a /Source/cmBootstrapCommands2.cxx | |
parent | 6deb43e6c836a61536c3d6e36ca16b51013e9134 (diff) | |
download | CMake-57dd094eded03a94402b6eecf7027325bd7b5136.zip CMake-57dd094eded03a94402b6eecf7027325bd7b5136.tar.gz CMake-57dd094eded03a94402b6eecf7027325bd7b5136.tar.bz2 |
Use vector, not list for cmCommand storage.
Diffstat (limited to 'Source/cmBootstrapCommands2.cxx')
-rw-r--r-- | Source/cmBootstrapCommands2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBootstrapCommands2.cxx b/Source/cmBootstrapCommands2.cxx index e292a3a..e522d8c 100644 --- a/Source/cmBootstrapCommands2.cxx +++ b/Source/cmBootstrapCommands2.cxx @@ -59,7 +59,7 @@ #include "cmUnsetCommand.cxx" #include "cmWhileCommand.cxx" -void GetBootstrapCommands2(std::list<cmCommand*>& commands) +void GetBootstrapCommands2(std::vector<cmCommand*>& commands) { commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetDirectoryPropertyCommand); |