mirror of
https://github.com/holub/mame
synced 2025-04-29 03:20:50 +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
|
#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