+ add: VS v.15.9 new compiler version

This commit is contained in:
Rainer Kottenhoff 2018-11-15 14:08:38 +01:00
parent 14063d5741
commit aee9239af9
2 changed files with 10 additions and 2 deletions

View File

@ -21,6 +21,9 @@ indent_style = space
indent_size = 2
tab_width = 2
[*.rc]
charset = utf-8
[language/**.h]
charset = utf-8

View File

@ -61,9 +61,14 @@
// ============================================================================
// Compiler specific
#if defined(_MSC_VER)
#if (_MSC_VER >= 1915)
#if(_MSC_FULL_VER >= 191526732)
#if (_MSC_VER >= 1916)
#if(_MSC_FULL_VER >= 191627023)
#define VER_CPL MS Visual C++ 2017 v15.9.0
#endif
#elif (_MSC_VER >= 1915)
#if(_MSC_FULL_VER >= 191526732)
#define VER_CPL MS Visual C++ 2017 v15.8.(8-9)
#elif(_MSC_FULL_VER >= 191526730)
#define VER_CPL MS Visual C++ 2017 v15.8.(5-7)