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:
@@ -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+
|
||||
|
Reference in New Issue
Block a user