diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-08 16:01:22 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-08 16:01:22 -0800 |
| commit | 81dd967f0d2e150d028b23ac6953afb58d531218 (patch) | |
| tree | 247313477c4381555a2f78afd96499d3a9d468cc /toolsrc/src/PostBuildLint.cpp | |
| parent | 626f4404e90523eebefb084e3e603543626cc293 (diff) | |
| download | vcpkg-81dd967f0d2e150d028b23ac6953afb58d531218.tar.gz vcpkg-81dd967f0d2e150d028b23ac6953afb58d531218.zip | |
Fix warning about default constructor
Diffstat (limited to 'toolsrc/src/PostBuildLint.cpp')
| -rw-r--r-- | toolsrc/src/PostBuildLint.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolsrc/src/PostBuildLint.cpp b/toolsrc/src/PostBuildLint.cpp index 90bd55843..37db0b8b6 100644 --- a/toolsrc/src/PostBuildLint.cpp +++ b/toolsrc/src/PostBuildLint.cpp @@ -546,6 +546,8 @@ namespace vcpkg::PostBuildLint { fs::path file; OutdatedDynamicCrt outdated_crt; + + OutdatedDynamicCrt_and_file() = delete; }; static lint_status check_outdated_crt_linkage_of_dlls(const std::vector<fs::path>& dlls, const fs::path dumpbin_exe) |
