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/cmCommandsForBootstrap.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/cmCommandsForBootstrap.cxx')
-rw-r--r-- | Source/cmCommandsForBootstrap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommandsForBootstrap.cxx b/Source/cmCommandsForBootstrap.cxx index 15b664e..5f397a1 100644 --- a/Source/cmCommandsForBootstrap.cxx +++ b/Source/cmCommandsForBootstrap.cxx @@ -11,6 +11,6 @@ ============================================================================*/ #include "cmCommands.h" -void GetPredefinedCommands(std::list<cmCommand*>&) +void GetPredefinedCommands(std::vector<cmCommand*>&) { } |