1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 02:07:57 +00:00

Remove all GCC 4.6 support; new minimum is GCC 5.4.

This commit is contained in:
Arthur O'Dwyer
2020-02-15 16:22:15 -05:00
parent 8c87f123a0
commit d0a6212fd4
5 changed files with 5 additions and 33 deletions

View File

@@ -216,7 +216,7 @@ EX void apply_memory_reserve() {
}
}
catch(std::bad_alloc&) {}
#if (ISGCC46 || ISWINDOWS)
#if ISWINDOWS
// no get_new_handler on this compiler...
default_handler = [] { throw std::bad_alloc(); };
#else