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
|
|
@ -26,8 +26,7 @@ using std::string;
|
|||
|
||||
// Check whether member templates can be used
|
||||
//
|
||||
#if defined __GNUC__ && \
|
||||
(__GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
|
||||
#if defined __GNUC__
|
||||
# define WXARC_MEMBER_TEMPLATES
|
||||
#endif
|
||||
#if defined _MSC_VER && _MSC_VER >= 1310 && !defined __WIN64__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue