diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-10 00:04:44 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-11-10 00:04:44 -0800 |
| commit | 22f681c82d584a9962a0133ef086326f41df9cc1 (patch) | |
| tree | 853bb546ad178cf43fe6dba3d51cb1367471a818 /toolsrc/src/BuildInfo.cpp | |
| parent | bf7978dcf962c8ff37b3319121e60eb1629be684 (diff) | |
| download | vcpkg-22f681c82d584a9962a0133ef086326f41df9cc1.tar.gz vcpkg-22f681c82d584a9962a0133ef086326f41df9cc1.zip | |
Make crt search case insensitive
Diffstat (limited to 'toolsrc/src/BuildInfo.cpp')
| -rw-r--r-- | toolsrc/src/BuildInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/BuildInfo.cpp b/toolsrc/src/BuildInfo.cpp index 4b533ca8f..5fcf8ac09 100644 --- a/toolsrc/src/BuildInfo.cpp +++ b/toolsrc/src/BuildInfo.cpp @@ -16,7 +16,7 @@ namespace vcpkg const std::regex& BuildType::crt_regex() const { - static const std::regex r(this->m_crt_regex_as_string); + static const std::regex r(this->m_crt_regex_as_string, std::regex_constants::icase); return r; } |
