From c693e4aa647bdaaee5804d0c0936a98eef73adbd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 3 Dec 2021 08:06:13 +0100 Subject: [PATCH] util/BindMethod: remove unused struct MethodWithSignature --- src/util/BindMethod.hxx | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/util/BindMethod.hxx b/src/util/BindMethod.hxx index 31503bcfc..2f2ca18a5 100644 --- a/src/util/BindMethod.hxx +++ b/src/util/BindMethod.hxx @@ -81,24 +81,6 @@ public: namespace BindMethodDetail { -/** - * Helper class which converts a signature type to a method pointer - * type. - * - * @param T the wrapped class - * @param S the function signature type (plain, without instance - * pointer) - */ -template -struct MethodWithSignature; - -template -struct MethodWithSignature { - typedef R (T::*method_pointer)(Args...) noexcept(NoExcept); -}; - /** * Helper class which introspects a method pointer type. *