diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-02 16:55:06 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-02 17:29:11 -0700 |
| commit | e25a31eca8550780ce96586ef27063728441b2e2 (patch) | |
| tree | fc47e0bbffbda08162f4c00a2dfd0a025cc52e35 /toolsrc/src/vcpkg.cpp | |
| parent | f72cf87ab21c1b6966c09ec3e7fd5d7f9052ea0a (diff) | |
| download | vcpkg-e25a31eca8550780ce96586ef27063728441b2e2.tar.gz vcpkg-e25a31eca8550780ce96586ef27063728441b2e2.zip | |
Suppress 4768 warning from shlobj.h
Diffstat (limited to 'toolsrc/src/vcpkg.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolsrc/src/vcpkg.cpp b/toolsrc/src/vcpkg.cpp index f4300a73c..706c641fb 100644 --- a/toolsrc/src/vcpkg.cpp +++ b/toolsrc/src/vcpkg.cpp @@ -11,7 +11,10 @@ #include "vcpkg_Strings.h" #include "vcpkg_System.h" #include "vcpkglib.h" +#pragma warning(push) +#pragma warning(disable : 4768) #include <Shlobj.h> +#pragma warning(pop) #include <cassert> #include <fstream> #include <memory> |
