Added workaround for MSVC warning

This commit is contained in:
Nathan Woods 2016-07-30 12:16:11 -04:00
parent d59b0a1a51
commit 049b7ad0fb

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>