Merge pull request #1162 from npwoods/msvc_keyboardipp_workaround

Added workaround for MSVC warning
This commit is contained in:
Vas Crabb 2016-07-31 09:28:38 +10:00 committed by GitHub
commit 49e5c0d10e

View File

@ -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>