Drop platform support for Solaris & AIX

These platforms didn't see maintenance in years.
This commit just removes ifdef's & cmake check.
This commit is contained in:
Campbell Barton
2017-09-29 19:10:08 +10:00
parent 04e8a09662
commit 5a1954a5cb
12 changed files with 8 additions and 71 deletions

View File

@@ -225,7 +225,7 @@ public: \
MEM_freeN(mem); \
} \
#if defined __GNUC__ || defined __sun
#if defined __GNUC__
# define OBJECT_GUARDED_NEW(type, args ...) \
new(MEM_mallocN(sizeof(type), __func__)) type(args)
#else