Remove checks for outdated GCC versions

wxWidgets now supports only GCC 4 and newer, so there is no reason
to keep code specific for older GCC versions.
This commit is contained in:
PB
2020-10-19 19:38:53 +02:00
parent 035fc5eb37
commit a7df23d43c
6 changed files with 3 additions and 30 deletions

View File

@@ -24,8 +24,7 @@
#endif
// define wxHAVE_U_ESCAPE if the compiler supports \uxxxx character constants
#if defined(__VISUALC__) || \
(defined(__GNUC__) && (__GNUC__ >= 3))
#if defined(__VISUALC__) || defined(__GNUC__)
#define wxHAVE_U_ESCAPE
// and disable warning that using them results in with MSVC 8+