refs #459 Removed compare() workaround in CActionHotkeyList.

This commit is contained in:
Mathew Sutcliffe
2015-09-10 21:48:37 +01:00
parent 00cd4f4f87
commit 51c97264f5

View File

@@ -47,13 +47,6 @@ namespace BlackMisc
//! Example:
//! List contains CTRL-F and other has combination CTRL
CActionHotkeyList findSupersetsOf(const CActionHotkey &other);
//! Compare two CHotkeyList
//! \todo Remove once https://dev.vatsim-germany.org/issues/459 is fixed
friend int compare(const CActionHotkeyList &a, const CActionHotkeyList &b)
{
return compare(static_cast<const CSequence<CActionHotkey> &>(a), static_cast<const CSequence<CActionHotkey> &>(b));
}
};
}