mirror of
https://github.com/holub/mame
synced 2025-04-28 19:14:55 +03:00
Added workaround for MSVC warning
This commit is contained in:
parent
d59b0a1a51
commit
049b7ad0fb
@ -5,6 +5,11 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
// Work around for MSVC warning that identifies some of these as unused
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning ( disable : 4505 )
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "keyboard.h"
|
#include "keyboard.h"
|
||||||
|
|
||||||
#include <numeric>
|
#include <numeric>
|
||||||
|
Loading…
Reference in New Issue
Block a user