summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSVN.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-05-05 13:49:36 (GMT)
committerKitware Robot <kwrobot@kitware.com>2017-05-05 13:49:41 (GMT)
commitb605bdfd03ccb0c7003a110004afe7981853bc76 (patch)
treef36c52e3462d6c16a954bba6760d321e91a9a56a /Source/CTest/cmCTestSVN.h
parent5a9f1b87c30870a6a705f882039b2b4e98126813 (diff)
parent3e027d9def0f2d9f542cb71eda12e9527c418c9e (diff)
downloadCMake-b605bdfd03ccb0c7003a110004afe7981853bc76.zip
CMake-b605bdfd03ccb0c7003a110004afe7981853bc76.tar.gz
CMake-b605bdfd03ccb0c7003a110004afe7981853bc76.tar.bz2
Merge topic 'vector-over-list'
3e027d9d c++: prefer vectors over lists Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !799
Diffstat (limited to 'Source/CTest/cmCTestSVN.h')
-rw-r--r--Source/CTest/cmCTestSVN.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestSVN.h b/Source/CTest/cmCTestSVN.h
index d90d387..46b0778 100644
--- a/Source/CTest/cmCTestSVN.h
+++ b/Source/CTest/cmCTestSVN.h
@@ -8,7 +8,6 @@
#include "cmCTestGlobalVC.h"
#include <iosfwd>
-#include <list>
#include <string>
#include <vector>
@@ -71,7 +70,7 @@ private:
friend struct Revision;
// Info of all the repositories (root, externals and nested ones).
- std::list<SVNInfo> Repositories;
+ std::vector<SVNInfo> Repositories;
// Pointer to the infos of the root repository.
SVNInfo* RootInfo;