diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-28 19:29:55 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-28 19:54:01 -0700 |
| commit | 6684240090512f745bf7530b2fb4bcd31c3fb02e (patch) | |
| tree | dba9143ed0d1a480aa8f147d6275af4f4aecfa9a /toolsrc/src/commands_remove.cpp | |
| parent | 992f192c5e937f22877117e64ff7a38a6447c4bc (diff) | |
| download | vcpkg-6684240090512f745bf7530b2fb4bcd31c3fb02e.tar.gz vcpkg-6684240090512f745bf7530b2fb4bcd31c3fb02e.zip | |
Use Strings::EMPTY
Diffstat (limited to 'toolsrc/src/commands_remove.cpp')
| -rw-r--r-- | toolsrc/src/commands_remove.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_remove.cpp b/toolsrc/src/commands_remove.cpp index db5357514..cca541c85 100644 --- a/toolsrc/src/commands_remove.cpp +++ b/toolsrc/src/commands_remove.cpp @@ -18,7 +18,7 @@ namespace vcpkg::Commands::Remove { auto& fs = paths.get_filesystem(); auto spghs = status_db->find_all(spec.name(), spec.triplet()); - auto core_pkg = **status_db->find(spec.name(), spec.triplet(), ""); + auto core_pkg = **status_db->find(spec.name(), spec.triplet(), Strings::EMPTY); for (auto&& spgh : spghs) { |
