aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/VcpkgPaths.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:39:33 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:54:01 -0700
commit28e581599e263e3f0b021ad5b6914d80fa9640f8 (patch)
tree15ca2181346e1e9dd76521099c6d05a550d52534 /toolsrc/src/VcpkgPaths.cpp
parent03c4c7f8c49d103f57fe12899526b27fc8ccc452 (diff)
downloadvcpkg-28e581599e263e3f0b021ad5b6914d80fa9640f8.tar.gz
vcpkg-28e581599e263e3f0b021ad5b6914d80fa9640f8.zip
Use Strings::EMPTY
Diffstat (limited to 'toolsrc/src/VcpkgPaths.cpp')
-rw-r--r--toolsrc/src/VcpkgPaths.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/VcpkgPaths.cpp b/toolsrc/src/VcpkgPaths.cpp
index 17a11b1a9..94fbf9a93 100644
--- a/toolsrc/src/VcpkgPaths.cpp
+++ b/toolsrc/src/VcpkgPaths.cpp
@@ -133,7 +133,7 @@ namespace vcpkg
fs::path get_nuget_path(const fs::path& downloads_folder, const fs::path& scripts_folder)
{
static constexpr std::array<int, 3> expected_version = {4, 1, 0};
- static const std::wstring version_check_arguments = L"";
+ static const std::wstring version_check_arguments = Strings::WEMPTY;
const fs::path downloaded_copy = downloads_folder / "nuget-4.1.0" / "nuget.exe";
const std::vector<fs::path> from_path = find_from_PATH(L"nuget");