1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

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.
This commit is contained in:
Simon Tatham 2022-09-06 10:59:03 +01:00
parent 33b8ce3659
commit 93e6da65ac

View File

@ -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