mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
netlist: hopefully fix issue #7006
This commit is contained in:
parent
b7edc5e9e7
commit
38be1d4296
@ -265,6 +265,9 @@ namespace plib {
|
||||
template <class C>
|
||||
using specific_member_function = R (C::*)(Targs...);
|
||||
|
||||
template <class C>
|
||||
using const_specific_member_function = R (C::*)(Targs...) const;
|
||||
|
||||
class generic_class;
|
||||
using generic_member_function = specific_member_function<generic_class>;
|
||||
|
||||
@ -293,6 +296,9 @@ namespace plib {
|
||||
template <class C>
|
||||
using specific_member_function = R (C::*)(Targs...);
|
||||
|
||||
template <class C>
|
||||
using const_specific_member_function = R (C::*)(Targs...) const;
|
||||
|
||||
class generic_class;
|
||||
using generic_member_function = specific_member_function<generic_class>;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user