From 8f7e40a6dce2c73799783d6bf6130093c46d6dca Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sun, 8 Nov 2020 16:42:39 +0100 Subject: [PATCH] Compile fix for gcc with previous commits. --- include/modules.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/modules.h b/include/modules.h index 457231930..ef664d3e6 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1803,7 +1803,6 @@ _UNREAL_ERROR(_hook_error_incompatible, "Incompatible hook function. Check argum ((hooktype == HOOKTYPE_VIEW_TOPIC_OUTSIDE_CHANNEL) && !ValidateHook(hooktype_view_topic_outside_channel, func)) || \ ((hooktype == HOOKTYPE_CHAN_PERMIT_NICK_CHANGE) && !ValidateHook(hooktype_chan_permit_nick_change, func)) || \ ((hooktype == HOOKTYPE_IS_CHANNEL_SECURE) && !ValidateHook(hooktype_is_channel_secure, func)) || \ - ((hooktype == HOOKTYPE_SEND_CHANNEL) && !ValidateHook(hooktype_can_send_to_channel_secure, func)) || \ ((hooktype == HOOKTYPE_CHANNEL_SYNCED) && !ValidateHook(hooktype_channel_synced, func)) || \ ((hooktype == HOOKTYPE_CAN_SAJOIN) && !ValidateHook(hooktype_can_sajoin, func)) || \ ((hooktype == HOOKTYPE_WHOIS) && !ValidateHook(hooktype_whois, func)) || \