mirror of
https://github.com/holub/mame
synced 2025-10-07 17:27:06 +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 <vector>
|
||||||
#include <memory>
|
#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
|
// TEMPORARY helper to catch is_pod assertions in the debugger
|
||||||
#if 0
|
#if 0
|
||||||
#undef assert
|
#undef assert
|
||||||
|
Loading…
Reference in New Issue
Block a user