aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Environment.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 17:28:20 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 17:28:20 -0800
commitd9f770ad8d6010a09d6be2ec9a262fc6ce074267 (patch)
tree295245dd0086c833a54ffd09f55ece39401495ea /toolsrc/src/vcpkg_Environment.cpp
parent4e86b01a36cba7a1e1b883a8d62a6f68c2b6e030 (diff)
downloadvcpkg-d9f770ad8d6010a09d6be2ec9a262fc6ce074267.tar.gz
vcpkg-d9f770ad8d6010a09d6be2ec9a262fc6ce074267.zip
Improve comment
Diffstat (limited to 'toolsrc/src/vcpkg_Environment.cpp')
-rw-r--r--toolsrc/src/vcpkg_Environment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg_Environment.cpp b/toolsrc/src/vcpkg_Environment.cpp
index 22a9252b0..aaa6bb106 100644
--- a/toolsrc/src/vcpkg_Environment.cpp
+++ b/toolsrc/src/vcpkg_Environment.cpp
@@ -106,7 +106,7 @@ namespace vcpkg::Environment
static const fs::path& get_VS2015_installation_instance()
{
- static const fs::path vs2015_cmntools = fs::path(System::wdupenv_str(L"VS140COMNTOOLS")).parent_path(); // The call to parent path is needed because the env variable has a trailing backslash
+ static const fs::path vs2015_cmntools = fs::path(System::wdupenv_str(L"VS140COMNTOOLS")).parent_path(); // The call to parent_path() is needed because the env variable has a trailing backslash
static const fs::path vs2015_path = vs2015_cmntools.parent_path().parent_path();
return vs2015_path;
}