]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
removed the statement for all versions of Visual Studio
authorYann Collet <cyan@fb.com>
Mon, 2 Oct 2017 09:02:16 +0000 (02:02 -0700)
committerYann Collet <cyan@fb.com>
Mon, 2 Oct 2017 09:02:16 +0000 (02:02 -0700)
programs/fileio.c

index bd51972a8f57d0ad1f9b870b94eef97c19755298..dafc124684c72c7cd16e6171ad1054ba6890c2dd 100644 (file)
@@ -149,8 +149,8 @@ const char* g_artefact = NULL;
 void INThandler(int sig)
 {
     assert(sig==SIGINT); (void)sig;
-#if !(defined(_MSC_VER) && (_MSC_VER < 1700 /* < visual studio 2012 */))
-    signal(sig, SIG_IGN);  /* this invocation generates a buggy warning in Visual Studio up to 2010 */
+#if !defined(_MSC_VER)
+    signal(sig, SIG_IGN);  /* this invocation generates a buggy warning in Visual Studio */
 #endif
     if (g_artefact) remove(g_artefact);
     DISPLAY("\n");