aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/PostBuildLint.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-08 16:13:27 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-08 16:13:27 -0800
commit52ebf3944d1a0aa276472f50e47de9fa61429a7c (patch)
treecf2be11c5164c5cb2a51a8f3dc27e6429da2083f /toolsrc/src/PostBuildLint.cpp
parent81dd967f0d2e150d028b23ac6953afb58d531218 (diff)
downloadvcpkg-52ebf3944d1a0aa276472f50e47de9fa61429a7c.tar.gz
vcpkg-52ebf3944d1a0aa276472f50e47de9fa61429a7c.zip
Format
Diffstat (limited to 'toolsrc/src/PostBuildLint.cpp')
-rw-r--r--toolsrc/src/PostBuildLint.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/PostBuildLint.cpp b/toolsrc/src/PostBuildLint.cpp
index 37db0b8b6..ac3396984 100644
--- a/toolsrc/src/PostBuildLint.cpp
+++ b/toolsrc/src/PostBuildLint.cpp
@@ -22,7 +22,8 @@ namespace vcpkg::PostBuildLint
std::regex regex;
OutdatedDynamicCrt(const std::string& name, const std::string& regex_as_string)
- : name(name), regex(std::regex(regex_as_string, std::regex_constants::icase)) {}
+ : name(name),
+ regex(std::regex(regex_as_string, std::regex_constants::icase)) {}
};
const std::vector<OutdatedDynamicCrt>& get_outdated_dynamic_crts()