From 682bfc675fe701fc7edfd257cddef96d5a83f7f2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 28 May 2019 13:37:14 +0200 Subject: [PATCH] Add this ifdef around pragma execute-character-set --- intl/msg_hash_ar.c | 2 ++ intl/msg_hash_ar.h | 2 ++ intl/msg_hash_chs.c | 2 ++ intl/msg_hash_chs.h | 2 ++ intl/msg_hash_cht.c | 2 ++ intl/msg_hash_cht.h | 2 ++ intl/msg_hash_de.c | 2 ++ intl/msg_hash_de.h | 2 ++ intl/msg_hash_el.c | 2 ++ intl/msg_hash_el.h | 2 ++ intl/msg_hash_eo.c | 2 ++ intl/msg_hash_eo.h | 2 ++ intl/msg_hash_es.c | 2 ++ intl/msg_hash_es.h | 2 ++ intl/msg_hash_fr.c | 2 ++ intl/msg_hash_fr.h | 2 ++ intl/msg_hash_it.c | 2 ++ intl/msg_hash_it.h | 2 ++ intl/msg_hash_ja.c | 2 ++ intl/msg_hash_ja.h | 2 ++ intl/msg_hash_ko.c | 2 ++ intl/msg_hash_ko.h | 2 ++ intl/msg_hash_nl.c | 2 ++ intl/msg_hash_nl.h | 2 ++ intl/msg_hash_pl.c | 2 ++ intl/msg_hash_pl.h | 2 ++ intl/msg_hash_pt_br.c | 2 ++ intl/msg_hash_pt_br.h | 2 ++ intl/msg_hash_pt_pt.c | 2 ++ intl/msg_hash_pt_pt.h | 2 ++ intl/msg_hash_ru.c | 2 ++ intl/msg_hash_ru.h | 2 ++ intl/msg_hash_tr.c | 2 ++ intl/msg_hash_tr.h | 2 ++ intl/msg_hash_vn.c | 2 ++ intl/msg_hash_vn.h | 2 ++ menu/widgets/menu_osk_utf8_pages.h | 2 ++ 37 files changed, 74 insertions(+) diff --git a/intl/msg_hash_ar.c b/intl/msg_hash_ar.c index 3b71318668..b9f063a82e 100644 --- a/intl/msg_hash_ar.c +++ b/intl/msg_hash_ar.c @@ -26,8 +26,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable: 4566) #endif diff --git a/intl/msg_hash_ar.h b/intl/msg_hash_ar.h index da004dfb84..c6d297a00f 100644 --- a/intl/msg_hash_ar.h +++ b/intl/msg_hash_ar.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_chs.c b/intl/msg_hash_chs.c index 0a66acae8e..50bea5ea08 100644 --- a/intl/msg_hash_chs.c +++ b/intl/msg_hash_chs.c @@ -25,8 +25,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_chs.h b/intl/msg_hash_chs.h index 459aaa332d..d891ff07e8 100644 --- a/intl/msg_hash_chs.h +++ b/intl/msg_hash_chs.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_cht.c b/intl/msg_hash_cht.c index 9fcf5bd203..212a9b5703 100644 --- a/intl/msg_hash_cht.c +++ b/intl/msg_hash_cht.c @@ -25,8 +25,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_cht.h b/intl/msg_hash_cht.h index 4a36d41a6b..4d4884f12c 100644 --- a/intl/msg_hash_cht.h +++ b/intl/msg_hash_cht.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_de.c b/intl/msg_hash_de.c index b9a1697bfa..57a7f953ee 100644 --- a/intl/msg_hash_de.c +++ b/intl/msg_hash_de.c @@ -28,7 +28,9 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) /* https://support.microsoft.com/en-us/kb/980263 */ +#if (_MSC_VER >= 1700) #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_de.h b/intl/msg_hash_de.h index 9bf7f6026d..8b1899d9ee 100644 --- a/intl/msg_hash_de.h +++ b/intl/msg_hash_de.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) /* https://support.microsoft.com/en-us/kb/980263 */ +#if (_MSC_VER >= 1700) #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_el.c b/intl/msg_hash_el.c index 4e5c6a1d28..367add5d83 100644 --- a/intl/msg_hash_el.c +++ b/intl/msg_hash_el.c @@ -28,8 +28,10 @@ #include "../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_el.h b/intl/msg_hash_el.h index 192d584821..ca6d39f577 100644 --- a/intl/msg_hash_el.h +++ b/intl/msg_hash_el.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_eo.c b/intl/msg_hash_eo.c index cbef637f29..445ab74c2d 100644 --- a/intl/msg_hash_eo.c +++ b/intl/msg_hash_eo.c @@ -23,8 +23,10 @@ #include "../msg_hash.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_eo.h b/intl/msg_hash_eo.h index 9a93730381..3f47681aaf 100644 --- a/intl/msg_hash_eo.h +++ b/intl/msg_hash_eo.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_es.c b/intl/msg_hash_es.c index a557cab4ba..d493053212 100644 --- a/intl/msg_hash_es.c +++ b/intl/msg_hash_es.c @@ -29,8 +29,10 @@ #endif #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_es.h b/intl/msg_hash_es.h index 09c1166ed0..e03cb223ae 100644 --- a/intl/msg_hash_es.h +++ b/intl/msg_hash_es.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_fr.c b/intl/msg_hash_fr.c index 4b8651082c..1c573127cd 100644 --- a/intl/msg_hash_fr.c +++ b/intl/msg_hash_fr.c @@ -30,8 +30,10 @@ #include "../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_fr.h b/intl/msg_hash_fr.h index c21e3fc68b..fb10135ed1 100644 --- a/intl/msg_hash_fr.h +++ b/intl/msg_hash_fr.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_it.c b/intl/msg_hash_it.c index 9a64487305..ffeddd3053 100644 --- a/intl/msg_hash_it.c +++ b/intl/msg_hash_it.c @@ -24,8 +24,10 @@ #include "../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_it.h b/intl/msg_hash_it.h index c96de31dab..84d9533a24 100644 --- a/intl/msg_hash_it.h +++ b/intl/msg_hash_it.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ja.c b/intl/msg_hash_ja.c index e126a1962e..03b20b2b58 100644 --- a/intl/msg_hash_ja.c +++ b/intl/msg_hash_ja.c @@ -26,8 +26,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ja.h b/intl/msg_hash_ja.h index 51f3083cc2..c25bd5c1bc 100644 --- a/intl/msg_hash_ja.h +++ b/intl/msg_hash_ja.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ko.c b/intl/msg_hash_ko.c index a853dc88cc..55601706d3 100644 --- a/intl/msg_hash_ko.c +++ b/intl/msg_hash_ko.c @@ -26,8 +26,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ko.h b/intl/msg_hash_ko.h index aa4c0bbaff..d7ec3297c9 100644 --- a/intl/msg_hash_ko.h +++ b/intl/msg_hash_ko.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_nl.c b/intl/msg_hash_nl.c index 823fb98b98..2ad85b0cdd 100644 --- a/intl/msg_hash_nl.c +++ b/intl/msg_hash_nl.c @@ -22,8 +22,10 @@ #include "../msg_hash.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_nl.h b/intl/msg_hash_nl.h index b25655dc48..0ca6227c36 100644 --- a/intl/msg_hash_nl.h +++ b/intl/msg_hash_nl.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pl.c b/intl/msg_hash_pl.c index e7c35164eb..4f2ca4a1fe 100644 --- a/intl/msg_hash_pl.c +++ b/intl/msg_hash_pl.c @@ -18,8 +18,10 @@ #include "../msg_hash.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pl.h b/intl/msg_hash_pl.h index f422c5da32..25b73ff2ed 100644 --- a/intl/msg_hash_pl.h +++ b/intl/msg_hash_pl.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pt_br.c b/intl/msg_hash_pt_br.c index 0218497f6f..cb98f9ea62 100644 --- a/intl/msg_hash_pt_br.c +++ b/intl/msg_hash_pt_br.c @@ -28,8 +28,10 @@ #include "../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pt_br.h b/intl/msg_hash_pt_br.h index b55bbc3d44..a25c2cc3ca 100644 --- a/intl/msg_hash_pt_br.h +++ b/intl/msg_hash_pt_br.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pt_pt.c b/intl/msg_hash_pt_pt.c index d5df686ee6..0e53f55b74 100644 --- a/intl/msg_hash_pt_pt.c +++ b/intl/msg_hash_pt_pt.c @@ -24,8 +24,10 @@ #include "../../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_pt_pt.h b/intl/msg_hash_pt_pt.h index 90bdde5433..4fc3709134 100644 --- a/intl/msg_hash_pt_pt.h +++ b/intl/msg_hash_pt_pt.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ru.c b/intl/msg_hash_ru.c index b7f9f9fa66..6c9d19191b 100644 --- a/intl/msg_hash_ru.c +++ b/intl/msg_hash_ru.c @@ -16,8 +16,10 @@ #include "../msg_hash.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_ru.h b/intl/msg_hash_ru.h index 7edb2694ab..8bd0f717fa 100644 --- a/intl/msg_hash_ru.h +++ b/intl/msg_hash_ru.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_tr.c b/intl/msg_hash_tr.c index 41ab3a3fe2..98f4591f9c 100644 --- a/intl/msg_hash_tr.c +++ b/intl/msg_hash_tr.c @@ -28,8 +28,10 @@ #include "../configuration.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_tr.h b/intl/msg_hash_tr.h index 33bbc081b4..a65a90301b 100644 --- a/intl/msg_hash_tr.h +++ b/intl/msg_hash_tr.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_vn.c b/intl/msg_hash_vn.c index 0a69ddfd71..c140b64ecb 100644 --- a/intl/msg_hash_vn.c +++ b/intl/msg_hash_vn.c @@ -26,8 +26,10 @@ #include "../verbosity.h" #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/intl/msg_hash_vn.h b/intl/msg_hash_vn.h index 995b1054c9..e272c589e9 100644 --- a/intl/msg_hash_vn.h +++ b/intl/msg_hash_vn.h @@ -1,6 +1,8 @@ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif diff --git a/menu/widgets/menu_osk_utf8_pages.h b/menu/widgets/menu_osk_utf8_pages.h index d90100b484..a35f086276 100644 --- a/menu/widgets/menu_osk_utf8_pages.h +++ b/menu/widgets/menu_osk_utf8_pages.h @@ -15,8 +15,10 @@ */ #if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900) +#if (_MSC_VER >= 1700) /* https://support.microsoft.com/en-us/kb/980263 */ #pragma execution_character_set("utf-8") +#endif #pragma warning(disable:4566) #endif