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:
parent
035fc5eb37
commit
a7df23d43c
6 changed files with 3 additions and 30 deletions
|
|
@ -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+
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue