Use vector, not list for cmCommand storage.

This commit is contained in:
Stephen Kelly
2015-04-12 02:44:41 +02:00
parent 6deb43e6c8
commit 57dd094ede
6 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -11,6 +11,6 @@
============================================================================*/
#include "cmCommands.h"
void GetPredefinedCommands(std::list<cmCommand*>&)
void GetPredefinedCommands(std::vector<cmCommand*>&)
{
}