summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx.in
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-12 00:44:41 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-12 18:09:47 (GMT)
commit57dd094eded03a94402b6eecf7027325bd7b5136 (patch)
treec0690faf3bb1a2772344502e9ca8934fa625c53a /Source/cmCommands.cxx.in
parent6deb43e6c836a61536c3d6e36ca16b51013e9134 (diff)
downloadCMake-57dd094eded03a94402b6eecf7027325bd7b5136.zip
CMake-57dd094eded03a94402b6eecf7027325bd7b5136.tar.gz
CMake-57dd094eded03a94402b6eecf7027325bd7b5136.tar.bz2
Use vector, not list for cmCommand storage.
Diffstat (limited to 'Source/cmCommands.cxx.in')
-rw-r--r--Source/cmCommands.cxx.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx.in b/Source/cmCommands.cxx.in
index f0745d7..e23bbd1 100644
--- a/Source/cmCommands.cxx.in
+++ b/Source/cmCommands.cxx.in
@@ -13,7 +13,7 @@
@COMMAND_INCLUDES@
-void GetPredefinedCommands(std::list<cmCommand*>& commands)
+void GetPredefinedCommands(std::vector<cmCommand*>& commands)
{
@NEW_COMMANDS@
}