Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
c693e4aa
Commit
c693e4aa
authored
3 years ago
by
Max Kellermann
Committed by
Max Kellermann
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/BindMethod: remove unused struct MethodWithSignature
parent
acab731f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
BindMethod.hxx
src/util/BindMethod.hxx
+0
-18
No files found.
src/util/BindMethod.hxx
View file @
c693e4aa
...
@@ -82,24 +82,6 @@ public:
...
@@ -82,24 +82,6 @@ public:
namespace
BindMethodDetail
{
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
<
typename
T
,
typename
S
>
struct
MethodWithSignature
;
template
<
typename
T
,
bool
NoExcept
,
typename
R
,
typename
...
Args
>
struct
MethodWithSignature
<
T
,
R
(
Args
...)
noexcept
(
NoExcept
)
>
{
typedef
R
(
T
::*
method_pointer
)(
Args
...)
noexcept
(
NoExcept
);
};
/**
* Helper class which introspects a method pointer type.
* Helper class which introspects a method pointer type.
*
*
* @param M the method pointer type
* @param M the method pointer type
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment