From 6203583b72b58272010f8d06999811ff39922acf Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 14 Jul 2022 11:22:49 +0900 Subject: Remove support for Visual Studio 2013 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No members of the buildfarm are using this version of Visual Studio, resulting in all the code cleaned up here as being mostly dead, and VS2017 is the oldest version still supported. More versions could be cut, but the gain would be minimal, while removing only VS2013 has the advantage to remove from the core code all the dependencies on the value defined by _MSC_VER, where compatibility tweaks have accumulated across the years mostly around locales and strtof(), so that's a nice isolated cleanup. Note that this commit additionally allows a revert of 3154e16. The versions of Visual Studio now supported range from 2015 to 2022. Author: Michael Paquier Reviewed-by: Juan José Santamaría Flecha, Tom Lane, Thomas Munro, Justin Pryzby Discussion: https://postgr.es/m/YoH2IMtxcS3ncWn+@paquier.xyz --- src/backend/main/main.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/backend/main/main.c') diff --git a/src/backend/main/main.c b/src/backend/main/main.c index dd82722ee3..bb782fa1ec 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -30,11 +30,6 @@ #include #endif -#if defined(_M_AMD64) && _MSC_VER == 1800 -#include -#include -#endif - #include "bootstrap/bootstrap.h" #include "common/username.h" #include "port/atomics.h" -- cgit v1.2.1