When I tried to compile my C++17 project, I got errors: Core/heap.cpp (249): error: ISO C++1z does not allow dynamic exception specifications (): void *operator new(size_t size) throw (std::bad_alloc) { void *ptr = UPP::MemoryAlloc(size); return ptr; } Core/heap.cpp (252): error: ISO C++1z does not allow dynamic exception specifications (): void *operator new[](size_t size) throw(std::bad_alloc) { void *ptr = UPP::MemoryAlloc(size); return ptr; } Will C++17 support be added?
Core/heap.cpp (249): error: ISO C++1z does not allow dynamic exception specifications (): void *operator new(size_t size) throw (std::bad_alloc) { void *ptr = UPP::MemoryAlloc(size); return ptr; }
Core/heap.cpp (252): error: ISO C++1z does not allow dynamic exception specifications (): void *operator new[](size_t size) throw(std::bad_alloc) { void *ptr = UPP::MemoryAlloc(size); return ptr; }
Report message to a moderator