From 8714f57fe11cd4fc70e1060e1800aa571bec6ae8 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Thu, 17 Sep 2020 08:56:48 +0200 Subject: [PATCH] Fix warning 4459 in TortoiseGitIDiff Signed-off-by: Sven Strickroth --- src/TortoiseIDiff/stdafx.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/TortoiseIDiff/stdafx.h b/src/TortoiseIDiff/stdafx.h index 3f5b129c4..a27172e43 100644 --- a/src/TortoiseIDiff/stdafx.h +++ b/src/TortoiseIDiff/stdafx.h @@ -21,7 +21,10 @@ using std::min; // turns off MFC's hiding of some common and often safely ignored warning messages #define _AFX_ALL_WARNINGS +#pragma warning(push) +#pragma warning(disable : 4459) #include +#pragma warning(pop) #include #include -- 2.11.4.GIT