mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 07:35:38 +00:00
(Windows) Silenced some MSVC compiler warnings related to the C++17 language standard.
This commit is contained in:
parent
3e88e90dac
commit
816d79c32f
|
@ -7,6 +7,10 @@
|
|||
// Called from Scraper.
|
||||
//
|
||||
|
||||
#if defined(_MSC_VER) // MSVC compiler.
|
||||
#define _SILENCE_CXX17_ITERATOR_BASE_CLASS_DEPRECATION_WARNING
|
||||
#endif
|
||||
|
||||
#include "scrapers/GamesDBJSONScraper.h"
|
||||
#include "scrapers/GamesDBJSONScraperResources.h"
|
||||
|
||||
|
|
|
@ -12,6 +12,10 @@
|
|||
// gamesdb_publishers.json
|
||||
//
|
||||
|
||||
#if defined(_MSC_VER) // MSVC compiler.
|
||||
#define _SILENCE_CXX17_ITERATOR_BASE_CLASS_DEPRECATION_WARNING
|
||||
#endif
|
||||
|
||||
#include "scrapers/GamesDBJSONScraperResources.h"
|
||||
|
||||
#include "Log.h"
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
// Convert characters to Unicode, upper-/lowercase conversion, string formatting etc.
|
||||
//
|
||||
|
||||
#if defined(_MSC_VER) // MSVC compiler.
|
||||
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
||||
#endif
|
||||
|
||||
#include "utils/StringUtil.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
|
Loading…
Reference in a new issue