1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 18:27:55 +00:00

fixed GCC46 testing

This commit is contained in:
Zeno Rogue
2019-09-13 19:23:22 +02:00
parent 4b47bdb07c
commit e1d6f547a4
3 changed files with 15 additions and 8 deletions

View File

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