diff options
author | 2016-07-30 12:16:11 -0400 | |
---|---|---|
committer | 2016-07-30 12:16:11 -0400 | |
commit | 049b7ad0fbb1754973f49e877e29c442bfc7a498 (patch) | |
tree | bfb6c4a0f8418b78e267763aa359e41ab3fac045 /src | |
parent | d59b0a1a5157c487bf591867c9de0b666a6552df (diff) |
Added workaround for MSVC warning
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/machine/keyboard.ipp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/machine/keyboard.ipp b/src/devices/machine/keyboard.ipp index 91c6992962e..b96954dd8bc 100644 --- a/src/devices/machine/keyboard.ipp +++ b/src/devices/machine/keyboard.ipp @@ -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> |