diff options
author | 2015-06-24 23:33:18 +0200 | |
---|---|---|
committer | 2015-06-24 23:33:18 +0200 | |
commit | 7a07ecba2a16abf918cc87dc23367f9a97cea3a6 (patch) | |
tree | 1c70358b79b3e9c38e6848657f609f6a3842bd68 /src/lib/util/delegate.h | |
parent | 3035213d045bc0edc31194fa5309c60ade5919ff (diff) | |
parent | cda316ccfea6017740fbbf8d76a732eff54047ff (diff) |
Merge pull request #3 from mamedev/master
merge with base
Diffstat (limited to 'src/lib/util/delegate.h')
-rw-r--r-- | src/lib/util/delegate.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/util/delegate.h b/src/lib/util/delegate.h index 3b02f91b976..848e56480c9 100644 --- a/src/lib/util/delegate.h +++ b/src/lib/util/delegate.h @@ -659,8 +659,7 @@ public: if (is_mfp() && (HAS_DIFFERENT_ABI)) \ return (*reinterpret_cast<generic_member_func>(m_function)) x; \ else \ - return (*m_function) x; \ - + return (*m_function) x; //return MEMBER_ABI (*reinpertret_cast<generic_member_func>(m_function)) x; // call the function |