UI: Fix "unreferenced local function" warning

Fixes the following warning:

warning C4505: 'operator ==' : unreferenced local function has been
removed

This function actually is used despite this warning, so the only way to
get rid of the warning is to disable the warning itself in this
particular case.
This commit is contained in:
jp9000 2015-11-15 09:44:30 -08:00
parent d7848f3cb7
commit 24d217f799

View File

@ -10,6 +10,10 @@
#include <vector>
#ifdef _MSC_VER
#pragma warning(disable : 4505)
#endif
static bool operator!=(const media_frames_per_second &a,
const media_frames_per_second &b)
{