diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-22 16:43:47 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-05 14:30:52 -0800 |
| commit | e5f60816cb6a786aa828aa2845522bb81c02cbe6 (patch) | |
| tree | 5db56ac7d0557b6ee195c32b149308eae886d273 /toolsrc/src/vcpkg.cpp | |
| parent | 64e1bf8de73d18c85776c4cce2f40281f3ebb253 (diff) | |
| download | vcpkg-e5f60816cb6a786aa828aa2845522bb81c02cbe6.tar.gz vcpkg-e5f60816cb6a786aa828aa2845522bb81c02cbe6.zip | |
Introduce ImmutableSortedVector
Diffstat (limited to 'toolsrc/src/vcpkg.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg.cpp b/toolsrc/src/vcpkg.cpp index 4748aeb54..eb2184ccb 100644 --- a/toolsrc/src/vcpkg.cpp +++ b/toolsrc/src/vcpkg.cpp @@ -204,7 +204,7 @@ std::vector<StatusParagraph_and_associated_files> vcpkg::get_installed_files(con } ), installed_files_of_current_pgh.end()); - StatusParagraph_and_associated_files pgh_and_files = {*pgh, std::move(installed_files_of_current_pgh)}; + StatusParagraph_and_associated_files pgh_and_files = {*pgh, ImmutableSortedVector<std::string>::create(std::move(installed_files_of_current_pgh))}; installed_files.push_back(std::move(pgh_and_files)); } |
