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

Add more _MSC_VER translations.

I just re-checked the official list page and found that VS2019 has
grown another five minor versions since commit 0a4e068ada.
This commit is contained in:
Simon Tatham 2021-02-13 08:32:41 +00:00
parent 438c980cf1
commit 767a3a0fd7

10
misc.c
View File

@ -235,6 +235,16 @@ char *buildinfo(const char *newline)
* anomalous first clause. That way the patch looks nicer when you
* add extra ones.
*/
#elif _MSC_VER == 1928
strbuf_catf(buf, " 2019 (16.8)");
#elif _MSC_VER == 1927
strbuf_catf(buf, " 2019 (16.7)");
#elif _MSC_VER == 1926
strbuf_catf(buf, " 2019 (16.6)");
#elif _MSC_VER == 1925
strbuf_catf(buf, " 2019 (16.5)");
#elif _MSC_VER == 1924
strbuf_catf(buf, " 2019 (16.4)");
#elif _MSC_VER == 1923
strbuf_catf(buf, " 2019 (16.3)");
#elif _MSC_VER == 1922