Add support for Visual Studio 2019 (16)

This commit is contained in:
Bertrand Bellenot 2019-04-15 12:18:30 +02:00 committed by SFT
parent 07c30f424e
commit 7fc4f8539c

View File

@ -381,6 +381,8 @@ static int GetVisualStudioVersionCompiledWith() {
return 14;
#elif (_MSC_VER < 1920)
return 15;
#elif (_MSC_VER < 1930)
return 16;
#else
#error "Unsupported/Untested _MSC_VER"
// As of now this is what is should be...have fun!