Remove checks for gcc <= 4.8 and always assume it's 4.8+
Previous versions don't provide C++11 support which is required now anyhow and so can't be used any longer.
This commit is contained in:
parent
1e26cbfcaf
commit
23a57b981f
8 changed files with 15 additions and 52 deletions
|
|
@ -578,7 +578,7 @@
|
|||
# if !__has_feature(cxx_rtti)
|
||||
# define wxNO_RTTI
|
||||
# endif
|
||||
# elif wxCHECK_GCC_VERSION(4, 3)
|
||||
# elif defined(__GNUG__)
|
||||
# ifndef __GXX_RTTI
|
||||
# define wxNO_RTTI
|
||||
# endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue