From 51c97264f5a0008ef44ceba54ae0decbd0e7eb3c Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Thu, 10 Sep 2015 21:48:37 +0100 Subject: [PATCH] refs #459 Removed compare() workaround in CActionHotkeyList. --- src/blackmisc/input/actionhotkeylist.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/blackmisc/input/actionhotkeylist.h b/src/blackmisc/input/actionhotkeylist.h index 256d1e95f..fa625a7fc 100644 --- a/src/blackmisc/input/actionhotkeylist.h +++ b/src/blackmisc/input/actionhotkeylist.h @@ -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 &>(a), static_cast &>(b)); - } }; }