Browse Source

cmakemain: Initialize vector content with iterators directly.

Stephen Kelly 11 năm trước cách đây
mục cha
commit
fa889c4d2f
1 tập tin đã thay đổi với 1 bổ sung5 xóa
  1. 1 5
      Source/cmakemain.cxx

+ 1 - 5
Source/cmakemain.cxx

@@ -219,11 +219,7 @@ int do_cmake(int ac, char const* const* av)
 
     // the command line args are processed here so that you can do
     // -DCMAKE_MODULE_PATH=/some/path and have this value accessible here
-    std::vector<std::string> args;
-    for(int i =0; i < ac; ++i)
-      {
-      args.push_back(av[i]);
-      }
+    std::vector<std::string> args(av, av + ac);
     hcm.SetCacheArgs(args);
 
     std::vector<cmDocumentationEntry> generators;