mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
Merge pull request #518 from dankan1890/master
Fixed missing noexcept in Visual Studio 2013.
This commit is contained in:
commit
18f5f17265
@ -19,6 +19,11 @@
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1900)
|
||||
#include <yvals.h>
|
||||
#define noexcept _NOEXCEPT
|
||||
#endif
|
||||
|
||||
// TEMPORARY helper to catch is_pod assertions in the debugger
|
||||
#if 0
|
||||
#undef assert
|
||||
|
Loading…
Reference in New Issue
Block a user