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:
Vadim Zeitlin 2022-10-09 18:41:49 +02:00
parent 1e26cbfcaf
commit 23a57b981f
8 changed files with 15 additions and 52 deletions

View file

@ -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