mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
Merge pull request #1162 from npwoods/msvc_keyboardipp_workaround
Added workaround for MSVC warning
This commit is contained in:
commit
49e5c0d10e
@ -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