mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-15 19:52:05 +00:00
Fix BindAdapter1_fun member function arguments.
This commit is contained in:
parent
85f7bf8ba8
commit
4e7103d6d1
@ -152,16 +152,16 @@ public:
|
||||
void operator()() { f(x1); }
|
||||
|
||||
template<typename A1>
|
||||
void operator()(A1& a1) { f(x1); }
|
||||
void operator()(const A1& a1) { f(x1); }
|
||||
|
||||
template<typename A1, typename A2>
|
||||
void operator()(A1& a1, A2& a2) { f(x1); }
|
||||
void operator()(const A1& a1, const A2& a2) { f(x1); }
|
||||
|
||||
template<typename A1, typename A2, typename A3>
|
||||
void operator()(A1& a1, A2& a2, A3& a3) { f(x1); }
|
||||
void operator()(const A1& a1, const A2& a2, const A3& a3) { f(x1); }
|
||||
|
||||
template<typename A1, typename A2, typename A3, typename A4>
|
||||
void operator()(A1& a1, A2& a2, A3& a3, A4& a4) { f(x1); }
|
||||
void operator()(const A1& a1, const A2& a2, const A3& a3, const A4& a4) { f(x1); }
|
||||
};
|
||||
|
||||
template<typename R, typename F,
|
||||
|
Loading…
Reference in New Issue
Block a user