diff --git a/.editorconfig b/.editorconfig index 9f7a6dfd3..c94e34111 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,6 +21,9 @@ indent_style = space indent_size = 2 tab_width = 2 +[*.rc] +charset = utf-8 + [language/**.h] charset = utf-8 diff --git a/src/Version.h b/src/Version.h index 3f889feb3..8140b70c5 100644 --- a/src/Version.h +++ b/src/Version.h @@ -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)