aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin-s <webmaster@macside.net>2017-10-14 18:31:53 +0200
committermartin-s <webmaster@macside.net>2017-10-14 18:31:53 +0200
commit630bcd84b8325217c440def11681e375f5ef4652 (patch)
treeee6efdfca16dbd8a960ecedf4df371347ad1293c
parent63753e86a60ef508760d9f4dd98b7f2336cd089c (diff)
downloadvcpkg-630bcd84b8325217c440def11681e375f5ef4652.tar.gz
vcpkg-630bcd84b8325217c440def11681e375f5ef4652.zip
- Updated naming of msvcrt vector.
-rw-r--r--toolsrc/src/PostBuildLint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/PostBuildLint.cpp b/toolsrc/src/PostBuildLint.cpp
index 58d6f987b..5de1078cd 100644
--- a/toolsrc/src/PostBuildLint.cpp
+++ b/toolsrc/src/PostBuildLint.cpp
@@ -57,7 +57,7 @@ namespace vcpkg::PostBuildLint
{"msvcrt40.dll", R"(msvcrt40\.dll)"},
};
- static const std::vector<OutdatedDynamicCrt> V = [&]() {
+ static const std::vector<OutdatedDynamicCrt> V_NO_MSVCRT = [&]() {
auto ret = V_NO_120;
ret.push_back({"msvcp120.dll", R"(msvcp120\.dll)"});
ret.push_back({"msvcp120_clr0400.dll", R"(msvcp120_clr0400\.dll)"});
@@ -69,7 +69,7 @@ namespace vcpkg::PostBuildLint
if (toolset == "v120")
return V_NO_120;
else
- return V;
+ return V_NO_MSVCRT;
}
static LintStatus check_for_files_in_include_directory(const Files::Filesystem& fs,