From 93e6da65acfd6f5e646eb07572671955b9992791 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 6 Sep 2022 10:59:03 +0100 Subject: [PATCH] buildinfo.c: add another Visual Studio version. It's not listed on the docs web page yet, but my Windows machine just installed it, so I was able to observe myself what value of _MSC_VER it defines. --- utils/buildinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/buildinfo.c b/utils/buildinfo.c index c5d7255a..5a837e01 100644 --- a/utils/buildinfo.c +++ b/utils/buildinfo.c @@ -44,6 +44,8 @@ char *buildinfo(const char *newline) * cases, two different compiler versions have the same _MSC_VER * value, and have to be distinguished by _MSC_FULL_VER. */ +#elif _MSC_VER == 1933 + put_fmt(buf, " 2022 (17.3)"); #elif _MSC_VER == 1932 put_fmt(buf, " 2022 (17.2)"); #elif _MSC_VER == 1931