diff options
author | Jakub Kalinski <jakub.kalinski1993@gmail.com> | 2019-04-02 20:04:02 (GMT) |
---|---|---|
committer | Jakub Kalinski <jakub.kalinski1993@gmail.com> | 2019-04-02 20:17:24 (GMT) |
commit | c1d1027ac1bf922972ebb121f369ff59be27103d (patch) | |
tree | 05595643ecf76259e853c299bd6266a599065657 /Source/cmSourceGroupCommand.cxx | |
parent | 81985b7c6c9a15ca7a59c54979d8371c783fb581 (diff) | |
download | CMake-c1d1027ac1bf922972ebb121f369ff59be27103d.zip CMake-c1d1027ac1bf922972ebb121f369ff59be27103d.tar.gz CMake-c1d1027ac1bf922972ebb121f369ff59be27103d.tar.bz2 |
Enabled performance-inefficient-vector-operation check in clang-tidy
Diffstat (limited to 'Source/cmSourceGroupCommand.cxx')
-rw-r--r-- | Source/cmSourceGroupCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx index 34ded38..2bc4c39 100644 --- a/Source/cmSourceGroupCommand.cxx +++ b/Source/cmSourceGroupCommand.cxx @@ -77,6 +77,7 @@ std::vector<std::string> prepareFilesPathsForTree( const std::string& currentSourceDir) { std::vector<std::string> prepared; + prepared.reserve(filesPaths.size()); for (auto const& filePath : filesPaths) { prepared.push_back(prepareFilePathForTree(filePath, currentSourceDir)); |