mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Added workaround for MSVC warning
This commit is contained in:
parent
d59b0a1a51
commit
049b7ad0fb
@ -5,6 +5,11 @@
|
||||
|
||||
#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 <numeric>
|
||||
|
Loading…
Reference in New Issue
Block a user